Skip to content

Commit

Permalink
Make CLI disregard ESLint ignore files (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
robatwilliams committed Nov 28, 2020
1 parent 283b178 commit c8f7705
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/check-es-compat/bin/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ if (args.length === 0) {

function execute(files) {
const eslintCLI = new eslint.CLIEngine({
useEslintrc: false, // ignore any config files
// Ignore any config files
useEslintrc: false,
ignore: false,

plugins: ['ecmascript-compat'],
parserOptions: {
// Latest version, so all features work
Expand Down

0 comments on commit c8f7705

Please sign in to comment.