Skip to content

Commit

Permalink
fix(linter): handle non-JSON eslintrc files when updating overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysoo committed Sep 6, 2023
1 parent 2bc7031 commit 382e364
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
37 changes: 37 additions & 0 deletions packages/linter/src/generators/utils/eslint-file.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {
baseEsLintConfigFile,
eslintConfigFileWhitelist,
findEslintFile,
lintConfigHasOverride,
} from './eslint-file';

import { Tree } from '@nx/devkit';
Expand Down Expand Up @@ -36,4 +37,40 @@ describe('@nx/linter:eslint-file', () => {
}
);
});

describe('lintConfigHasOverride', () => {
it('should return true when override exists in eslintrc format', () => {
tree.write(
'.eslintrc.json',
'{"overrides": [{ "files": ["*.ts"], "rules": {} }]}'
);
expect(
lintConfigHasOverride(
tree,
'.',
(o) => {
return o.files?.includes('*.ts');
},
false
)
).toBe(true);
});

it('should return false when eslintrc is not in JSON format', () => {
tree.write(
'.eslintrc.js',
'module.exports = {overrides: [{ files: ["*.ts"], rules: {} }]};'
);
expect(
lintConfigHasOverride(
tree,
'.',
(o) => {
return o.files?.includes('*.ts');
},
false
)
).toBe(false);
});
});
});
5 changes: 4 additions & 1 deletion packages/linter/src/generators/utils/eslint-file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,10 @@ export function lintConfigHasOverride(
root,
isBase ? baseEsLintConfigFile : '.eslintrc.json'
);
return readJson(tree, fileName).overrides?.some(lookup) || false;

return tree.exists(fileName)
? readJson(tree, fileName).overrides?.some(lookup) || false
: false;
}
}

Expand Down

0 comments on commit 382e364

Please sign in to comment.