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
The docs suggest
"ecmaFeatures": { "jsx": true },
But for me, using eslint 4.19.0, I get the following warning:
[eslint] The 'ecmaFeatures' config file property is deprecated, and has no effect.
The text was updated successfully, but these errors were encountered:
I think the solution is to use this instead
"parserOptions": { "ecmaFeatures": { "jsx": true, "modules": true } },
Sorry, something went wrong.
Hi @GitTom, thanks for reporting, feel free to make a PR with an update!
The solution by @GitTom fixed this for me too!
I will go ahead and submit a pull request for this in the docs since I don't see one open, and the issue is still present.
No branches or pull requests
The docs suggest
But for me, using eslint 4.19.0, I get the following warning:
The text was updated successfully, but these errors were encountered: