From 77124f2f4749ab57a3a8655b4556b8fded854e64 Mon Sep 17 00:00:00 2001 From: Yegor Bugayenko Date: Wed, 18 Dec 2024 12:54:28 +0300 Subject: [PATCH] typos --- src/commands/lint.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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'); }); } };