We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
I am using flat config with the following:
import jslint from "@eslint/js" import pluginImport from "eslint-plugin-import" import globals from "globals" import tslint from "typescript-eslint" export default [ { languageOptions: { globals: globals.node, ecmaVersion: "latest", sourceType: "module" } }, jslint.configs.recommended, ...tslint.configs.recommended, { files: ["**/*.@(js|ts|tsx)"], plugins: { "import": pluginImport, }, rules: { ...pluginImport.configs.recommended.rules, ...pluginImport.configs.typescript.rules, } }, recommendedPrettier ]
This produces the following error:
ESLint: Parse errors in imported module 'typescript-eslint': parserPath or languageOptions.parser is required! (undefined:undefined)(import/namespace)
The text was updated successfully, but these errors were encountered:
This plugin does not yet support flat config. See #2873
Sorry, something went wrong.
@ljharb Flat config has been enabled on version 2.30.0 a few days ago and this error is still happening in this version.
@rarenatoe yes - this issue is about <= v2.29; #3051 is for 2.30.
No branches or pull requests
I am using flat config with the following:
This produces the following error:
The text was updated successfully, but these errors were encountered: