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
…19026)

(cherry picked from commit 8c1f183)
  • Loading branch information
jaysoo authored and FrozenPandaz committed Sep 7, 2023
1 parent 2e1d48e commit 4365c01
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e/node/src/node.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ describe('Node Applications', () => {
}
).toString();
expect(additionalResult).toContain('Hello Additional World!');
}, 60000);
}, 300_000);

it('should be able to generate an empty application with variable in .env file', async () => {
const originalEnvPort = process.env.PORT;
Expand Down
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 4365c01

Please sign in to comment.