diff --git a/src/commands/lint.js b/src/commands/lint.js index 53c08b7..5f87eca 100644 --- a/src/commands/lint.js +++ b/src/commands/lint.js @@ -44,7 +44,9 @@ module.exports = function(opts) { console.info('EO program linted in %s', rel(path.resolve(opts.target))); return r; }).catch((error) => { - throw new Error("There are error and/or warnings; you may disable warnings via the --easy option"); + throw new Error( + 'There are error and/or warnings; you may disable warnings via the --easy option' + ); }); } else { return mvnw( @@ -54,7 +56,7 @@ module.exports = function(opts) { console.info('EO program verified in %s', rel(path.resolve(opts.target))); return r; }).catch((error) => { - throw new Error("You may disable warnings via the --easy option"); + throw new Error('You may disable warnings via the --easy option'); }); } };