Skip to content
New issue

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

docs: Update note about ECMAScript support #17991

Merged
merged 5 commits into from
Jan 16, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove mention about environments (legacy feature)
fasttime committed Jan 14, 2024
commit 9b551153e45c54efea171ca48cac7a207e3d0389
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -117,7 +117,7 @@ Yes, ESLint natively supports parsing JSX syntax (this must be enabled in [confi

### What ECMAScript versions does ESLint support?

ESLint has full support for ECMAScript 3, 5, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, and 2023. ECMAScript 2024 (the default) is also supported, although the specification hasn't been finalized yet. You can set your desired ECMAScript syntax (and other settings, like global variables or your target environments) through [configuration](https://eslint.org/docs/latest/use/configure).
ESLint has full support for ECMAScript 3, 5, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, and 2023. ECMAScript 2024 (the default) is also supported, although the specification hasn't been finalized yet. You can set your desired ECMAScript syntax and other settings (like global variables) through [configuration](https://eslint.org/docs/latest/use/configure).

### What about experimental features?