You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> eslint .
Oops! Something went wrong! :(
ESLint: 9.23.0
TypeError: sourceCode.getAllComments is not a function
at Object.getFromContext (file:///home/projects/vitejs-vite-uzwt6juz/node_modules/eslint-plugin-react/lib/util/pragma.js#cjs:54:33)
at Components.componentRule (file:///home/projects/vitejs-vite-uzwt6juz/node_modules/eslint-plugin-react/lib/util/Components.js#cjs:288:29)
at createRuleListeners (file:///home/projects/vitejs-vite-uzwt6juz/node_modules/eslint/lib/linter/linter.js#cjs:1134:15)
at eval (file:///home/projects/vitejs-vite-uzwt6juz/node_modules/eslint/lib/linter/linter.js#cjs:1289:7)
at Array.forEach (<anonymous>)
at runRules (file:///home/projects/vitejs-vite-uzwt6juz/node_modules/eslint/lib/linter/linter.js#cjs:1203:31)
at #flatVerifyWithoutProcessors (file:///home/projects/vitejs-vite-uzwt6juz/node_modules/eslint/lib/linter/linter.js#cjs:2290:22)
at Linter._verifyWithFlatConfigArrayAndWithoutProcessors (file:///home/projects/vitejs-vite-uzwt6juz/node_modules/eslint/lib/linter/linter.js#cjs:2381:43)
at Linter._verifyWithFlatConfigArray (file:///home/projects/vitejs-vite-uzwt6juz/node_modules/eslint/lib/linter/linter.js#cjs:2484:15)
at Linter.verify (file:///home/projects/vitejs-vite-uzwt6juz/node_modules/eslint/lib/linter/linter.js#cjs:1840:10)
The error happens when I run this command:
npm run lint
I tried to uninstall eslint-plugin-react, remove node_modules folder, and install all dependencies again but the error persists.
I have created a Stackblitz project. Please, I will appreciate your help.
Expected Behavior
If I remove the @eslint/css code on my eslint.config.js file, I do not have this error:
you might need to put the tseslint config after the react ones, since the ts-eslint one sets the proper TS parser settings, but since it works when you remove the CSS rules, it's probably that the pragma util is erroring on .css files. I'll see if I can repro it (but if you have a repo, that'd be better)
@developermau your repro repo uses eslint-plugin-react-x, which is an entirely different plugin. This is for eslint-plugin-react. I'll leave this open tho since this issue references the correct plugin.
Is there an existing issue for this?
Description Overview
I have built an app using Vite (
^6.2.2
), React (^19.0.0
), Typescript(~5.7.2
), ESLint (^9.23.0
), and @eslint/css (^0.5.0
).I have this ESLint configuration file (
eslint.config.js
):Also, I have some scripts on my
package.json
:Unfortunately, I have an error:
The error happens when I run this command:
I tried to uninstall
eslint-plugin-react
, removenode_modules
folder, and install all dependencies again but the error persists.I have created a Stackblitz project. Please, I will appreciate your help.
Expected Behavior
If I remove the
@eslint/css
code on myeslint.config.js
file, I do not have this error:Results:
eslint-plugin-react version
^7.37.4
eslint version
^9.23.0
node version
18.20.3
The text was updated successfully, but these errors were encountered: