We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I run bun run lint - I get error
bun run lint
ESLint: 8.57.1 AssertionError [ERR_ASSERTION]: Node must be provided when reporting error if location is not provided
Here is the reproducible repository https://github.com/FDiskas/remix-dev
The text was updated successfully, but these errors were encountered:
I encountered the same problem, my configuration file is as follows:
import globals from "globals"; import pluginVue from "eslint-plugin-vue"; import eslintConfigPrettier from 'eslint-config-prettier'; import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended"; export default [ {files: ["**/*.{js,mjs,cjs,vue}"]}, {languageOptions: { globals: {...globals.browser, ...globals.node} }}, ...pluginVue.configs["flat/essential"], eslintConfigPrettier, eslintPluginPrettierRecommended ];
"eslint-plugin-prettier": "^5.2.1", "eslint": "^9.13.0", "eslint-config-prettier": "^9.1.0",
In addition, eslint's configuration files are generated by npm init @eslint/config
npm init @eslint/config
Sorry, something went wrong.
I'm facing the same issue. It works perfectly on Node v20 but the error pops up while using Node v22
No branches or pull requests
If I run
bun run lint
- I get errorHere is the reproducible repository https://github.com/FDiskas/remix-dev
The text was updated successfully, but these errors were encountered: