Skip to content

Commit

Permalink
fixed linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
neocotic committed Nov 22, 2018
1 parent d58aef8 commit 96e7e06
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/convert-svg-to-jpeg/src/JPEGProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class JPEGProvider extends Provider {
* @inheritdoc
* @override
*/
parseAPIOptions(options, inputFilePath) {
parseAPIOptions(options) {
if (typeof options.quality === 'number' && (options.quality < 0 || options.quality > 100)) {
throw new Error('Value for quality option out of range. Use value between 0-100 (inclusive)');
}
Expand Down
4 changes: 2 additions & 2 deletions packages/convert-svg-to-png/src/PNGProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ class PNGProvider extends Provider {
* @inheritdoc
* @override
*/
parseAPIOptions(options, inputFilePath) {}
parseAPIOptions() {}

/**
* @inheritdoc
* @override
*/
parseCLIOptions(options, command) {}
parseCLIOptions() {}

}

Expand Down

0 comments on commit 96e7e06

Please sign in to comment.