Extending ESLint got introduced originally in https://github.com/facebook/create-react-app/pull/7036 by @mrmckeb. It's stated that this is limited currently to users configuring their ESLint in package.json:
eslintCli.getConfigForFile is not limited to package.json configsWhat is actually stated in the docs and what doesn't actually hold true is that overrides can be used to support TS rules etc (there is example of that).
This is not quite true, because whatever config gets loaded & resolved through that eslintCli.getConfigForFile call (with paths.appIndexJs as argument) gets set as "global" config for the whole eslint-loader.
So depending on what paths.appIndexJs is we either can get:
paths.appIndexJs is TSpaths.appIndexJs is JSFor this to work correctly it would be the easiest to allow ESLint to load configs on its own - without passing explicit single config to the eslint-loader.
i have same issue
This issue has been automatically marked as stale because it has not had any recent activity. It will be closed in 5 days if no further activity occurs.
This also leads to other problems, such as the same parser being used for JS and TS files. This leads to parsing errors in mixed code bases which is an annoying problem because syntactically correct code can't be run due to a non essential tool (ESLint) which can't even be turned off.
Hi @Andarist. Sorry this fell through the cracks. Let me try to address your comments:
Extending ESLint got introduced originally in #7036 by @mrmckeb. It's stated that this is limited currently to users configuring their ESLint in package.json:
Agreed. This should be clarified in the docs.
What is actually stated in the docs and what doesn't actually hold true is that
overridescan be used to support TS rules etc (there is example of that).
Yeah this should be explicitly stated in the language above that example.
So depending on what
paths.appIndexJsis we either can get:
- all TS-related rules being applied to ALL files (including JS) - when
paths.appIndexJsis TS- no TS rules are applied at all - when
paths.appIndexJsis JS
Can you confirm this? I seem to remember when testing this that getConfigForFile() resolves the entire configuration (both TS, and JS) irrespective of the file extension. That would be the intent anyways so that we support mixed JS/TS code bases.
Thanks for bringing this up. We'd gladly accept PRs to improve the documentation for points you raised.
Hi all, sorry for inconvenience. This was something I briefly tested during development, but admittedly it needed more work.
I'm not sure how to best go about this, I have an idea... but have reached out to the ESLint team for advice.
https://github.com/eslint/eslint/issues/12685
@Andarist, sorry I think we were confused about what you were reporting.
I've managed to reproduce now and understand. Sorry for the inconvenience.
So, in short:
undefined to baseConfig when process.env.EXTEND_ESLINT === 'true'.useEslintrc: false to useEslintrc: process.env.EXTEND_ESLINT === 'true'.How do these changes sound to everyone? I've tested them by modifying the Webpack config (in node_modules directly) - if others can do the same and report back, I can make the change this weekend.
@mrmckeb Thanks for taking a look at this! I believe that would help to fix my case because it would simply offload config loading to ESLint and everything would be loaded on per-file basis 馃憤
@mrmckeb I was also struggling for days with this issue. Yes, that solves the problem.
But if this is the only way to work around, I think process.env.EXTEND_ESLINT should be changed to process.env.USE_ESLINTRC or something.
@mrmckeb But when I applied your changes and set
"eslintConfig": {
"extends": ""
},, eslint still comes from somewhere. That strange as it works different when I set that without your change.
Hi @dev-xu, we didn't design this functionality to allow you to pass in no config. So, at this stage that's not supported. The empty string should fail... and I'm surprised that it falls back to the config.
Perhaps #8276 will solve that for you.
Sorry @Andarist, Christmas has eaten up a lot of time. ~I can take a look at this over the coming days - or you can raise a PR if you'd like? Let me know!~
Edit: I've created a PR here - https://github.com/facebook/create-react-app/pull/8276
If anyone can take a look and let me know if this resolves your problems, that would be great.
Thank you @mrmckeb for a fix! I'm afraid I won't be able to test this out within the next 2 weeks as I'm on parental leave right now.
Most helpful comment
@Andarist, sorry I think we were confused about what you were reporting.
I've managed to reproduce now and understand. Sorry for the inconvenience.
So, in short:
undefinedtobaseConfigwhenprocess.env.EXTEND_ESLINT === 'true'.useEslintrc: falsetouseEslintrc: process.env.EXTEND_ESLINT === 'true'.How do these changes sound to everyone? I've tested them by modifying the Webpack config (in
node_modulesdirectly) - if others can do the same and report back, I can make the change this weekend.