Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Dec 18, 2024
1 parent 84611f8 commit 77124f2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/commands/lint.js
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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');
});
}
};

0 comments on commit 77124f2

Please sign in to comment.