Skip to content

Commit

Permalink
lint hahahahaha :|
Browse files Browse the repository at this point in the history
  • Loading branch information
zburke committed May 16, 2024
1 parent fb0094b commit 54fe764
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/commands/lint.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ const lintCommand = async () => {

const dingCount = errors + warnings;
if (errors || warnings) {
console.warn(`✖ ${dingCount} problem${dingCount === 1 ? '' : 's'} (${errors} errors, ${warnings} warnings)`)
console.warn(`✖ ${dingCount} problem${dingCount === 1 ? '' : 's'} (${errors} errors, ${warnings} warnings)`);
}

if (errors) {
process.exit(1)
process.exit(1);
}
}
}
}
};

module.exports = {
command: 'lint',
Expand Down

0 comments on commit 54fe764

Please sign in to comment.