npm version Downloads Build Status FOSSA Status
Open Collective Backers Open Collective Sponsors Follow us on Twitter

ESLint

Website | Configure ESLint | Rules | Contribute to ESLint | Report Bugs | Code of Conduct | Twitter | Discord | Mastodon

ESLint is a tool for identifying and reporting on patterns found in ECMAScript/JavaScript code. In many ways, it is similar to JSLint and JSHint with a few exceptions:

  • ESLint uses Espree for JavaScript parsing.
  • ESLint uses an AST to evaluate patterns in code.
  • ESLint is completely pluggable, every single rule is a plugin and you can add more at runtime.

Table of Contents

  1. Installation and Usage
  2. Configuration
  3. Version Support
  4. Code of Conduct
  5. Filing Issues
  6. Frequently Asked Questions
  7. Releases
  8. Security Policy
  9. Semantic Versioning Policy
  10. Stylistic Rule Updates
  11. License
  12. Team
  13. Sponsors
  14. Technology Sponsors

Installation and Usage

Prerequisites: Node.js (^18.18.0, ^20.9.0, or >=21.1.0) built with SSL support. (If you are using an official Node.js distribution, SSL is always built in.)

You can install and configure ESLint using this command:

npm init @eslint/config@latest

After that, you can run ESLint on any file or directory like this:

npx eslint yourfile.js

Configuration

You can configure rules in your eslint.config.js files as in this example:

export default [
    {
        files: ["**/*.js", "**/*.cjs", "**/*.mjs"],
        rules: {
            "prefer-const": "warn",
            "no-constant-binary-expression": "error"
        }
    }
];

The names "prefer-const" and "no-constant-binary-expression" are the names of rules in ESLint. The first value is the error level of the rule and can be one of these values:

  • "off" or 0 - turn the rule off
  • "warn" or 1 - turn the rule on as a warning (doesn't affect exit code)
  • "error" or 2 - turn the rule on as an error (exit code will be 1)

The three error levels allow you fine-grained control over how ESLint applies rules (for more configuration options and details, see the configuration docs).

Version Support

The ESLint team provides ongoing support for the current version and six months of limited support for the previous version. Limited support includes critical bug fixes, security issues, and compatibility issues only.

ESLint offers commercial support for both current and previous versions through our partners, Tidelift and HeroDevs.

See Version Support for more details.

Code of Conduct

ESLint adheres to the OpenJS Foundation Code of Conduct.

Filing Issues

Before filing an issue, please be sure to read the guidelines for what you're reporting:

Frequently Asked Questions

Does ESLint support JSX?

Yes, ESLint natively supports parsing JSX syntax (this must be enabled in configuration). Please note that supporting JSX syntax is not the same as supporting React. React applies specific semantics to JSX syntax that ESLint doesn't recognize. We recommend using eslint-plugin-react if you are using React and want React semantics.

Does Prettier replace ESLint?

No, ESLint and Prettier have different jobs: ESLint is a linter (looking for problematic patterns) and Prettier is a code formatter. Using both tools is common, refer to Prettier's documentation to learn how to configure them to work well with each other.

What ECMAScript versions does ESLint support?

ESLint has full support for ECMAScript 3, 5, and every year from 2015 up until the most recent stage 4 specification (the default). You can set your desired ECMAScript syntax and other settings (like global variables) through configuration.

What about experimental features?

ESLint's parser only officially supports the latest final ECMAScript standard. We will make changes to core rules in order to avoid crashes on stage 3 ECMAScript syntax proposals (as long as they are implemented using the correct experimental ESTree syntax). We may make changes to core rules to better work with language extensions (such as JSX, Flow, and TypeScript) on a case-by-case basis.

In other cases (including if rules need to warn on more or fewer cases due to new syntax, rather than just not crashing), we recommend you use other parsers and/or rule plugins. If you are using Babel, you can use @babel/eslint-parser and @babel/eslint-plugin to use any option available in Babel.

Once a language feature has been adopted into the ECMAScript standard (stage 4 according to the TC39 process), we will accept issues and pull requests related to the new feature, subject to our contributing guidelines. Until then, please use the appropriate parser and plugin(s) for your experimental feature.

Which Node.js versions does ESLint support?

ESLint updates the supported Node.js versions with each major release of ESLint. At that time, ESLint's supported Node.js versions are updated to be:

  1. The most recent maintenance release of Node.js
  2. The lowest minor version of the Node.js LTS release that includes the features the ESLint team wants to use.
  3. The Node.js Current release

ESLint is also expected to work with Node.js versions released after the Node.js Current release.

Refer to the Quick Start Guide for the officially supported Node.js versions for a given ESLint release.

Where to ask for help?

Open a discussion or stop by our Discord server.

Why doesn't ESLint lock dependency versions?

Lock files like package-lock.json are helpful for deployed applications. They ensure that dependencies are consistent between environments and across deployments.

Packages like eslint that get published to the npm registry do not include lock files. npm install eslint as a user will respect version constraints in ESLint's package.json. ESLint and its dependencies will be included in the user's lock file if one exists, but ESLint's own lock file would not be used.

We intentionally don't lock dependency versions so that we have the latest compatible dependency versions in development and CI that our users get when installing ESLint in a project.

The Twilio blog has a deeper dive to learn more.

Releases

We have scheduled releases every two weeks on Friday or Saturday. You can follow a release issue for updates about the scheduling of any particular release.

Security Policy

ESLint takes security seriously. We work hard to ensure that ESLint is safe for everyone and that security issues are addressed quickly and responsibly. Read the full security policy.

Semantic Versioning Policy

ESLint follows semantic versioning. However, due to the nature of ESLint as a code quality tool, it's not always clear when a minor or major version bump occurs. To help clarify this for everyone, we've defined the following semantic versioning policy for ESLint:

  • Patch release (intended to not break your lint build)
    • A bug fix in a rule that results in ESLint reporting fewer linting errors.
    • A bug fix to the CLI or core (including formatters).
    • Improvements to documentation.
    • Non-user-facing changes such as refactoring code, adding, deleting, or modifying tests, and increasing test coverage.
    • Re-releasing after a failed release (i.e., publishing a release that doesn't work for anyone).
  • Minor release (might break your lint build)
    • A bug fix in a rule that results in ESLint reporting more linting errors.
    • A new rule is created.
    • A new option to an existing rule that does not result in ESLint reporting more linting errors by default.
    • A new addition to an existing rule to support a newly-added language feature (within the last 12 months) that will result in ESLint reporting more linting errors by default.
    • An existing rule is deprecated.
    • A new CLI capability is created.
    • New capabilities to the public API are added (new classes, new methods, new arguments to existing methods, etc.).
    • A new formatter is created.
    • eslint:recommended is updated and will result in strictly fewer linting errors (e.g., rule removals).
  • Major release (likely to break your lint build)
    • eslint:recommended is updated and may result in new linting errors (e.g., rule additions, most rule option updates).
    • A new option to an existing rule that results in ESLint reporting more linting errors by default.
    • An existing formatter is removed.
    • Part of the public API is removed or changed in an incompatible way. The public API includes:
      • Rule schemas
      • Configuration schema
      • Command-line options
      • Node.js API
      • Rule, formatter, parser, plugin APIs

According to our policy, any minor update may report more linting errors than the previous release (ex: from a bug fix). As such, we recommend using the tilde (~) in package.json e.g. "eslint": "~3.1.0" to guarantee the results of your builds.

Stylistic Rule Updates

Stylistic rules are frozen according to our policy on how we evaluate new rules and rule changes. This means:

  • Bug fixes: We will still fix bugs in stylistic rules.
  • New ECMAScript features: We will also make sure stylistic rules are compatible with new ECMAScript features.
  • New options: We will not add any new options to stylistic rules unless an option is the only way to fix a bug or support a newly-added ECMAScript feature.

License

FOSSA Status

Team

These folks keep the project moving and are resources for help.

Technical Steering Committee (TSC)

The people who manage releases, review feature requests, and meet regularly to ensure ESLint is properly maintained.

Nicholas C. Zakas's Avatar
Nicholas C. Zakas
Francesco Trotta's Avatar
Francesco Trotta
Milos Djermanovic's Avatar
Milos Djermanovic

Reviewers

The people who review and implement new features.

唯然's Avatar
唯然
Nitin Kumar's Avatar
Nitin Kumar

Committers

The people who review and fix bugs and help triage issues.

Josh Goldberg ✨'s Avatar
Josh Goldberg ✨
Tanuj Kanti's Avatar
Tanuj Kanti

Website Team

Team members who focus specifically on eslint.org

Amaresh  S M's Avatar
Amaresh S M
Strek's Avatar
Strek
Percy Ma's Avatar
Percy Ma

Sponsors

The following companies, organizations, and individuals support ESLint's ongoing maintenance and development. Become a Sponsor to get your logo on our README and website.

Platinum Sponsors

Automattic Airbnb

Gold Sponsors

trunk.io

Silver Sponsors

JetBrains Liftoff American Express Workleap

Bronze Sponsors

Anagram Solver Icons8 Discord Nx HeroCoders Nextbase Starter Kit

Technology Sponsors

Netlify Algolia 1Password

eslint/eslint

{
"props": {
"initialPayload": {
"allShortcutsEnabled": false,
"path": "/",
"repo": {
"id": 11061773,
"defaultBranch": "main",
"name": "eslint",
"ownerLogin": "eslint",
"currentUserCanPush": false,
"isFork": false,
"isEmpty": false,
"createdAt": "2013-06-29T23:59:48.000Z",
"ownerAvatar": "https://avatars.githubusercontent.com/u/6019716?v=4",
"public": true,
"private": false,
"isOrgOwned": true
},
"currentUser": null,
"refInfo": {
"name": "main",
"listCacheKey": "v0:1726140282.0",
"canEdit": false,
"refType": "branch",
"currentOid": "7b852ce59e6ed56931c080aa46ab548fa57feffc"
},
"tree": {
"items": [
{
"name": ".github",
"path": ".github",
"contentType": "directory"
},
{
"name": ".trunk",
"path": ".trunk",
"contentType": "directory"
},
{
"name": "bin",
"path": "bin",
"contentType": "directory"
},
{
"name": "conf",
"path": "conf",
"contentType": "directory"
},
{
"name": "docs",
"path": "docs",
"contentType": "directory"
},
{
"name": "lib",
"path": "lib",
"contentType": "directory"
},
{
"name": "messages",
"path": "messages",
"contentType": "directory"
},
{
"name": "packages",
"path": "packages",
"contentType": "directory"
},
{
"name": "templates",
"path": "templates",
"contentType": "directory"
},
{
"name": "tests",
"path": "tests",
"contentType": "directory"
},
{
"name": "tools",
"path": "tools",
"contentType": "directory"
},
{
"name": ".c8rc",
"path": ".c8rc",
"contentType": "file"
},
{
"name": ".codeclimate.yml",
"path": ".codeclimate.yml",
"contentType": "file"
},
{
"name": ".editorconfig",
"path": ".editorconfig",
"contentType": "file"
},
{
"name": ".eslintignore",
"path": ".eslintignore",
"contentType": "file"
},
{
"name": ".gitattributes",
"path": ".gitattributes",
"contentType": "file"
},
{
"name": ".gitignore",
"path": ".gitignore",
"contentType": "file"
},
{
"name": ".markdownlint.yml",
"path": ".markdownlint.yml",
"contentType": "file"
},
{
"name": ".npmrc",
"path": ".npmrc",
"contentType": "file"
},
{
"name": ".pre-commit-hooks.yaml",
"path": ".pre-commit-hooks.yaml",
"contentType": "file"
},
{
"name": "CHANGELOG.md",
"path": "CHANGELOG.md",
"contentType": "file"
},
{
"name": "CONTRIBUTING.md",
"path": "CONTRIBUTING.md",
"contentType": "file"
},
{
"name": "LICENSE",
"path": "LICENSE",
"contentType": "file"
},
{
"name": "Makefile.js",
"path": "Makefile.js",
"contentType": "file"
},
{
"name": "README.md",
"path": "README.md",
"contentType": "file"
},
{
"name": "SUPPORT.md",
"path": "SUPPORT.md",
"contentType": "file"
},
{
"name": "eslint.config.js",
"path": "eslint.config.js",
"contentType": "file"
},
{
"name": "knip.jsonc",
"path": "knip.jsonc",
"contentType": "file"
},
{
"name": "package.json",
"path": "package.json",
"contentType": "file"
},
{
"name": "wdio.conf.js",
"path": "wdio.conf.js",
"contentType": "file"
},
{
"name": "webpack.config.js",
"path": "webpack.config.js",
"contentType": "file"
}
],
"templateDirectorySuggestionUrl": null,
"readme": null,
"totalCount": 31,
"showBranchInfobar": false
},
"fileTree": null,
"fileTreeProcessingTime": null,
"foldersToFetch": [],
"treeExpanded": false,
"symbolsExpanded": false,
"isOverview": true,
"overview": {
"banners": {
"shouldRecommendReadme": false,
"isPersonalRepo": false,
"showUseActionBanner": false,
"actionSlug": null,
"actionId": null,
"showProtectBranchBanner": false,
"publishBannersInfo": {
"dismissActionNoticePath": "/settings/dismiss-notice/publish_action_from_repo",
"releasePath": "/eslint/eslint/releases/new?marketplace=true",
"showPublishActionBanner": false
},
"interactionLimitBanner": null,
"showInvitationBanner": false,
"inviterName": null,
"actionsMigrationBannerInfo": {
"releaseTags": [],
"showImmutableActionsMigrationBanner": false,
"initialMigrationStatus": null
}
},
"codeButton": {
"contactPath": "/contact",
"isEnterprise": false,
"local": {
"protocolInfo": {
"httpAvailable": true,
"sshAvailable": null,
"httpUrl": "https://github.com/eslint/eslint.git",
"showCloneWarning": null,
"sshUrl": null,
"sshCertificatesRequired": null,
"sshCertificatesAvailable": null,
"ghCliUrl": "gh repo clone eslint/eslint",
"defaultProtocol": "http",
"newSshKeyUrl": "/settings/ssh/new",
"setProtocolPath": "/users/set_protocol"
},
"platformInfo": {
"cloneUrl": "https://desktop.github.com",
"showVisualStudioCloneButton": false,
"visualStudioCloneUrl": "https://windows.github.com",
"showXcodeCloneButton": false,
"xcodeCloneUrl": "https://developer.apple.com",
"zipballUrl": "/eslint/eslint/archive/refs/heads/main.zip"
}
},
"newCodespacePath": "/codespaces/new?hide_repo_select=true&repo=11061773"
},
"popovers": {
"rename": null,
"renamedParentRepo": null
},
"commitCount": "9,699",
"overviewFiles": [
{
"displayName": "README.md",
"repoName": "eslint",
"refName": "main",
"path": "README.md",
"preferredFileType": "readme",
"tabName": "README",
"richText": "<article class=\"markdown-body entry-content container-lg\" itemprop=\"text\"><p dir=\"auto\"><a href=\"https://www.npmjs.com/package/eslint\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/1df3e5cfdf62fd9e006ce83c456c001adeac16408a60004317cbae87bfe4d89d/68747470733a2f2f696d672e736869656c64732e696f2f6e706d2f762f65736c696e742e737667\" alt=\"npm version\" data-canonical-src=\"https://img.shields.io/npm/v/eslint.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://www.npmjs.com/package/eslint\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/8e387f4efab6a802b71a48f4156d438f40d4b3c4b7d447686d33c4e9d15128fc/68747470733a2f2f696d672e736869656c64732e696f2f6e706d2f646d2f65736c696e742e737667\" alt=\"Downloads\" data-canonical-src=\"https://img.shields.io/npm/dm/eslint.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://github.com/eslint/eslint/actions\"><img src=\"https://github.com/eslint/eslint/workflows/CI/badge.svg\" alt=\"Build Status\" style=\"max-width: 100%;\"></a>\n<a href=\"https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Feslint%2Feslint?ref=badge_shield\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/aef76ac96acb04ca344d65f09a272e2807c6fd18bd7644c17527715db09a3d63/68747470733a2f2f6170702e666f7373612e696f2f6170692f70726f6a656374732f67697425324268747470732533412532462532466769746875622e636f6d25324665736c696e7425324665736c696e742e7376673f747970653d736869656c64\" alt=\"FOSSA Status\" data-canonical-src=\"https://app.fossa.io/api/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Feslint%2Feslint.svg?type=shield\" style=\"max-width: 100%;\"></a>\n<br>\n<a href=\"https://opencollective.com/eslint\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/0ce60409f5a8995861dbc1f16630391593e33919a17ada2de0d93e58f207dd99/68747470733a2f2f696d672e736869656c64732e696f2f6f70656e636f6c6c6563746976652f6261636b6572732f65736c696e74\" alt=\"Open Collective Backers\" data-canonical-src=\"https://img.shields.io/opencollective/backers/eslint\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/eslint\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/d9a18d6e05eed9bcaafcd8330e209f249c2bd9a89a874185eef785f84049915a/68747470733a2f2f696d672e736869656c64732e696f2f6f70656e636f6c6c6563746976652f73706f6e736f72732f65736c696e74\" alt=\"Open Collective Sponsors\" data-canonical-src=\"https://img.shields.io/opencollective/sponsors/eslint\" style=\"max-width: 100%;\"></a>\n<a href=\"https://twitter.com/intent/user?screen_name=geteslint\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/00a65e86bd10e05f6b8b190199a30fb4d9899aef726469e85772008a911cb3ee/68747470733a2f2f696d672e736869656c64732e696f2f747769747465722f666f6c6c6f772f67657465736c696e743f6c6162656c3d466f6c6c6f77267374796c653d736f6369616c\" alt=\"Follow us on Twitter\" data-canonical-src=\"https://img.shields.io/twitter/follow/geteslint?label=Follow&amp;style=social\" style=\"max-width: 100%;\"></a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">ESLint</h1><a id=\"user-content-eslint\" class=\"anchor\" aria-label=\"Permalink: ESLint\" href=\"#eslint\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a href=\"https://eslint.org\" rel=\"nofollow\">Website</a> |\n<a href=\"https://eslint.org/docs/latest/use/configure\" rel=\"nofollow\">Configure ESLint</a> |\n<a href=\"https://eslint.org/docs/rules/\" rel=\"nofollow\">Rules</a> |\n<a href=\"https://eslint.org/docs/latest/contribute\" rel=\"nofollow\">Contribute to ESLint</a> |\n<a href=\"https://eslint.org/docs/latest/contribute/report-bugs\" rel=\"nofollow\">Report Bugs</a> |\n<a href=\"https://eslint.org/conduct\" rel=\"nofollow\">Code of Conduct</a> |\n<a href=\"https://twitter.com/geteslint\" rel=\"nofollow\">Twitter</a> |\n<a href=\"https://eslint.org/chat\" rel=\"nofollow\">Discord</a> |\n<a href=\"https://fosstodon.org/@eslint\" rel=\"nofollow\">Mastodon</a></p>\n<p dir=\"auto\">ESLint is a tool for identifying and reporting on patterns found in ECMAScript/JavaScript code. In many ways, it is similar to JSLint and JSHint with a few exceptions:</p>\n<ul dir=\"auto\">\n<li>ESLint uses <a href=\"https://github.com/eslint/js/tree/main/packages/espree\">Espree</a> for JavaScript parsing.</li>\n<li>ESLint uses an AST to evaluate patterns in code.</li>\n<li>ESLint is completely pluggable, every single rule is a plugin and you can add more at runtime.</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Table of Contents</h2><a id=\"user-content-table-of-contents\" class=\"anchor\" aria-label=\"Permalink: Table of Contents\" href=\"#table-of-contents\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ol dir=\"auto\">\n<li><a href=\"#installation-and-usage\">Installation and Usage</a></li>\n<li><a href=\"#configuration\">Configuration</a></li>\n<li><a href=\"#version-support\">Version Support</a></li>\n<li><a href=\"#code-of-conduct\">Code of Conduct</a></li>\n<li><a href=\"#filing-issues\">Filing Issues</a></li>\n<li><a href=\"#frequently-asked-questions\">Frequently Asked Questions</a></li>\n<li><a href=\"#releases\">Releases</a></li>\n<li><a href=\"#security-policy\">Security Policy</a></li>\n<li><a href=\"#semantic-versioning-policy\">Semantic Versioning Policy</a></li>\n<li><a href=\"#stylistic-rule-updates\">Stylistic Rule Updates</a></li>\n<li><a href=\"#license\">License</a></li>\n<li><a href=\"#team\">Team</a></li>\n<li><a href=\"#sponsors\">Sponsors</a></li>\n<li><a href=\"#technology-sponsors\">Technology Sponsors</a> </li>\n</ol>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Installation and Usage</h2><a id=\"user-content-installation-and-usage\" class=\"anchor\" aria-label=\"Permalink: Installation and Usage\" href=\"#installation-and-usage\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Prerequisites: <a href=\"https://nodejs.org/\" rel=\"nofollow\">Node.js</a> (<code>^18.18.0</code>, <code>^20.9.0</code>, or <code>&gt;=21.1.0</code>) built with SSL support. (If you are using an official Node.js distribution, SSL is always built in.)</p>\n<p dir=\"auto\">You can install and configure ESLint using this command:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"npm init @eslint/config@latest\"><pre>npm init @eslint/config@latest</pre></div>\n<p dir=\"auto\">After that, you can run ESLint on any file or directory like this:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"npx eslint yourfile.js\"><pre>npx eslint yourfile.js</pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Configuration</h2><a id=\"user-content-configuration\" class=\"anchor\" aria-label=\"Permalink: Configuration\" href=\"#configuration\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can configure rules in your <code>eslint.config.js</code> files as in this example:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"export default [\n {\n files: [&quot;**/*.js&quot;, &quot;**/*.cjs&quot;, &quot;**/*.mjs&quot;],\n rules: {\n &quot;prefer-const&quot;: &quot;warn&quot;,\n &quot;no-constant-binary-expression&quot;: &quot;error&quot;\n }\n }\n];\"><pre><span class=\"pl-k\">export</span> <span class=\"pl-k\">default</span> <span class=\"pl-kos\">[</span>\n <span class=\"pl-kos\">{</span>\n <span class=\"pl-c1\">files</span>: <span class=\"pl-kos\">[</span><span class=\"pl-s\">\"**/*.js\"</span><span class=\"pl-kos\">,</span> <span class=\"pl-s\">\"**/*.cjs\"</span><span class=\"pl-kos\">,</span> <span class=\"pl-s\">\"**/*.mjs\"</span><span class=\"pl-kos\">]</span><span class=\"pl-kos\">,</span>\n <span class=\"pl-c1\">rules</span>: <span class=\"pl-kos\">{</span>\n <span class=\"pl-s\">\"prefer-const\"</span>: <span class=\"pl-s\">\"warn\"</span><span class=\"pl-kos\">,</span>\n <span class=\"pl-s\">\"no-constant-binary-expression\"</span>: <span class=\"pl-s\">\"error\"</span>\n <span class=\"pl-kos\">}</span>\n <span class=\"pl-kos\">}</span>\n<span class=\"pl-kos\">]</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">The names <code>\"prefer-const\"</code> and <code>\"no-constant-binary-expression\"</code> are the names of <a href=\"https://eslint.org/docs/rules\" rel=\"nofollow\">rules</a> in ESLint. The first value is the error level of the rule and can be one of these values:</p>\n<ul dir=\"auto\">\n<li><code>\"off\"</code> or <code>0</code> - turn the rule off</li>\n<li><code>\"warn\"</code> or <code>1</code> - turn the rule on as a warning (doesn't affect exit code)</li>\n<li><code>\"error\"</code> or <code>2</code> - turn the rule on as an error (exit code will be 1)</li>\n</ul>\n<p dir=\"auto\">The three error levels allow you fine-grained control over how ESLint applies rules (for more configuration options and details, see the <a href=\"https://eslint.org/docs/latest/use/configure\" rel=\"nofollow\">configuration docs</a>).</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Version Support</h2><a id=\"user-content-version-support\" class=\"anchor\" aria-label=\"Permalink: Version Support\" href=\"#version-support\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">The ESLint team provides ongoing support for the current version and six months of limited support for the previous version. Limited support includes critical bug fixes, security issues, and compatibility issues only.</p>\n<p dir=\"auto\">ESLint offers commercial support for both current and previous versions through our partners, <a href=\"https://tidelift.com/funding/github/npm/eslint\" rel=\"nofollow\">Tidelift</a> and <a href=\"https://www.herodevs.com/support/eslint-nes?utm_source=ESLintWebsite&amp;utm_medium=ESLintWebsite&amp;utm_campaign=ESLintNES&amp;utm_id=ESLintNES\" rel=\"nofollow\">HeroDevs</a>.</p>\n<p dir=\"auto\">See <a href=\"https://eslint.org/version-support\" rel=\"nofollow\">Version Support</a> for more details.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Code of Conduct</h2><a id=\"user-content-code-of-conduct\" class=\"anchor\" aria-label=\"Permalink: Code of Conduct\" href=\"#code-of-conduct\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">ESLint adheres to the <a href=\"https://eslint.org/conduct\" rel=\"nofollow\">OpenJS Foundation Code of Conduct</a>.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Filing Issues</h2><a id=\"user-content-filing-issues\" class=\"anchor\" aria-label=\"Permalink: Filing Issues\" href=\"#filing-issues\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Before filing an issue, please be sure to read the guidelines for what you're reporting:</p>\n<ul dir=\"auto\">\n<li><a href=\"https://eslint.org/docs/latest/contribute/report-bugs\" rel=\"nofollow\">Bug Report</a></li>\n<li><a href=\"https://eslint.org/docs/latest/contribute/propose-new-rule\" rel=\"nofollow\">Propose a New Rule</a></li>\n<li><a href=\"https://eslint.org/docs/latest/contribute/propose-rule-change\" rel=\"nofollow\">Proposing a Rule Change</a></li>\n<li><a href=\"https://eslint.org/docs/latest/contribute/request-change\" rel=\"nofollow\">Request a Change</a></li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Frequently Asked Questions</h2><a id=\"user-content-frequently-asked-questions\" class=\"anchor\" aria-label=\"Permalink: Frequently Asked Questions\" href=\"#frequently-asked-questions\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Does ESLint support JSX?</h3><a id=\"user-content-does-eslint-support-jsx\" class=\"anchor\" aria-label=\"Permalink: Does ESLint support JSX?\" href=\"#does-eslint-support-jsx\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Yes, ESLint natively supports parsing JSX syntax (this must be enabled in <a href=\"https://eslint.org/docs/latest/use/configure\" rel=\"nofollow\">configuration</a>). Please note that supporting JSX syntax <em>is not</em> the same as supporting React. React applies specific semantics to JSX syntax that ESLint doesn't recognize. We recommend using <a href=\"https://www.npmjs.com/package/eslint-plugin-react\" rel=\"nofollow\">eslint-plugin-react</a> if you are using React and want React semantics.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Does Prettier replace ESLint?</h3><a id=\"user-content-does-prettier-replace-eslint\" class=\"anchor\" aria-label=\"Permalink: Does Prettier replace ESLint?\" href=\"#does-prettier-replace-eslint\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">No, ESLint and Prettier have different jobs: ESLint is a linter (looking for problematic patterns) and Prettier is a code formatter. Using both tools is common, refer to <a href=\"https://prettier.io/docs/en/install#eslint-and-other-linters\" rel=\"nofollow\">Prettier's documentation</a> to learn how to configure them to work well with each other.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">What ECMAScript versions does ESLint support?</h3><a id=\"user-content-what-ecmascript-versions-does-eslint-support\" class=\"anchor\" aria-label=\"Permalink: What ECMAScript versions does ESLint support?\" href=\"#what-ecmascript-versions-does-eslint-support\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">ESLint has full support for ECMAScript 3, 5, and every year from 2015 up until the most recent stage 4 specification (the default). You can set your desired ECMAScript syntax and other settings (like global variables) through <a href=\"https://eslint.org/docs/latest/use/configure\" rel=\"nofollow\">configuration</a>.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">What about experimental features?</h3><a id=\"user-content-what-about-experimental-features\" class=\"anchor\" aria-label=\"Permalink: What about experimental features?\" href=\"#what-about-experimental-features\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">ESLint's parser only officially supports the latest final ECMAScript standard. We will make changes to core rules in order to avoid crashes on stage 3 ECMAScript syntax proposals (as long as they are implemented using the correct experimental ESTree syntax). We may make changes to core rules to better work with language extensions (such as JSX, Flow, and TypeScript) on a case-by-case basis.</p>\n<p dir=\"auto\">In other cases (including if rules need to warn on more or fewer cases due to new syntax, rather than just not crashing), we recommend you use other parsers and/or rule plugins. If you are using Babel, you can use <a href=\"https://www.npmjs.com/package/@babel/eslint-parser\" rel=\"nofollow\">@babel/eslint-parser</a> and <a href=\"https://www.npmjs.com/package/@babel/eslint-plugin\" rel=\"nofollow\">@babel/eslint-plugin</a> to use any option available in Babel.</p>\n<p dir=\"auto\">Once a language feature has been adopted into the ECMAScript standard (stage 4 according to the <a href=\"https://tc39.github.io/process-document/\" rel=\"nofollow\">TC39 process</a>), we will accept issues and pull requests related to the new feature, subject to our <a href=\"https://eslint.org/docs/latest/contribute\" rel=\"nofollow\">contributing guidelines</a>. Until then, please use the appropriate parser and plugin(s) for your experimental feature.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Which Node.js versions does ESLint support?</h3><a id=\"user-content-which-nodejs-versions-does-eslint-support\" class=\"anchor\" aria-label=\"Permalink: Which Node.js versions does ESLint support?\" href=\"#which-nodejs-versions-does-eslint-support\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">ESLint updates the supported Node.js versions with each major release of ESLint. At that time, ESLint's supported Node.js versions are updated to be:</p>\n<ol dir=\"auto\">\n<li>The most recent maintenance release of Node.js</li>\n<li>The lowest minor version of the Node.js LTS release that includes the features the ESLint team wants to use.</li>\n<li>The Node.js Current release</li>\n</ol>\n<p dir=\"auto\">ESLint is also expected to work with Node.js versions released after the Node.js Current release.</p>\n<p dir=\"auto\">Refer to the <a href=\"https://eslint.org/docs/latest/use/getting-started#prerequisites\" rel=\"nofollow\">Quick Start Guide</a> for the officially supported Node.js versions for a given ESLint release.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Where to ask for help?</h3><a id=\"user-content-where-to-ask-for-help\" class=\"anchor\" aria-label=\"Permalink: Where to ask for help?\" href=\"#where-to-ask-for-help\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Open a <a href=\"https://github.com/eslint/eslint/discussions\">discussion</a> or stop by our <a href=\"https://eslint.org/chat\" rel=\"nofollow\">Discord server</a>.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Why doesn't ESLint lock dependency versions?</h3><a id=\"user-content-why-doesnt-eslint-lock-dependency-versions\" class=\"anchor\" aria-label=\"Permalink: Why doesn't ESLint lock dependency versions?\" href=\"#why-doesnt-eslint-lock-dependency-versions\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Lock files like <code>package-lock.json</code> are helpful for deployed applications. They ensure that dependencies are consistent between environments and across deployments.</p>\n<p dir=\"auto\">Packages like <code>eslint</code> that get published to the npm registry do not include lock files. <code>npm install eslint</code> as a user will respect version constraints in ESLint's <code>package.json</code>. ESLint and its dependencies will be included in the user's lock file if one exists, but ESLint's own lock file would not be used.</p>\n<p dir=\"auto\">We intentionally don't lock dependency versions so that we have the latest compatible dependency versions in development and CI that our users get when installing ESLint in a project.</p>\n<p dir=\"auto\">The Twilio blog has a <a href=\"https://www.twilio.com/blog/lockfiles-nodejs\" rel=\"nofollow\">deeper dive</a> to learn more.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Releases</h2><a id=\"user-content-releases\" class=\"anchor\" aria-label=\"Permalink: Releases\" href=\"#releases\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">We have scheduled releases every two weeks on Friday or Saturday. You can follow a <a href=\"https://github.com/eslint/eslint/issues?q=is%3Aopen+is%3Aissue+label%3Arelease\">release issue</a> for updates about the scheduling of any particular release.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Security Policy</h2><a id=\"user-content-security-policy\" class=\"anchor\" aria-label=\"Permalink: Security Policy\" href=\"#security-policy\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">ESLint takes security seriously. We work hard to ensure that ESLint is safe for everyone and that security issues are addressed quickly and responsibly. Read the full <a href=\"https://github.com/eslint/.github/blob/master/SECURITY.md\">security policy</a>.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Semantic Versioning Policy</h2><a id=\"user-content-semantic-versioning-policy\" class=\"anchor\" aria-label=\"Permalink: Semantic Versioning Policy\" href=\"#semantic-versioning-policy\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">ESLint follows <a href=\"https://semver.org\" rel=\"nofollow\">semantic versioning</a>. However, due to the nature of ESLint as a code quality tool, it's not always clear when a minor or major version bump occurs. To help clarify this for everyone, we've defined the following semantic versioning policy for ESLint:</p>\n<ul dir=\"auto\">\n<li>Patch release (intended to not break your lint build)\n<ul dir=\"auto\">\n<li>A bug fix in a rule that results in ESLint reporting fewer linting errors.</li>\n<li>A bug fix to the CLI or core (including formatters).</li>\n<li>Improvements to documentation.</li>\n<li>Non-user-facing changes such as refactoring code, adding, deleting, or modifying tests, and increasing test coverage.</li>\n<li>Re-releasing after a failed release (i.e., publishing a release that doesn't work for anyone).</li>\n</ul>\n</li>\n<li>Minor release (might break your lint build)\n<ul dir=\"auto\">\n<li>A bug fix in a rule that results in ESLint reporting more linting errors.</li>\n<li>A new rule is created.</li>\n<li>A new option to an existing rule that does not result in ESLint reporting more linting errors by default.</li>\n<li>A new addition to an existing rule to support a newly-added language feature (within the last 12 months) that will result in ESLint reporting more linting errors by default.</li>\n<li>An existing rule is deprecated.</li>\n<li>A new CLI capability is created.</li>\n<li>New capabilities to the public API are added (new classes, new methods, new arguments to existing methods, etc.).</li>\n<li>A new formatter is created.</li>\n<li><code>eslint:recommended</code> is updated and will result in strictly fewer linting errors (e.g., rule removals).</li>\n</ul>\n</li>\n<li>Major release (likely to break your lint build)\n<ul dir=\"auto\">\n<li><code>eslint:recommended</code> is updated and may result in new linting errors (e.g., rule additions, most rule option updates).</li>\n<li>A new option to an existing rule that results in ESLint reporting more linting errors by default.</li>\n<li>An existing formatter is removed.</li>\n<li>Part of the public API is removed or changed in an incompatible way. The public API includes:\n<ul dir=\"auto\">\n<li>Rule schemas</li>\n<li>Configuration schema</li>\n<li>Command-line options</li>\n<li>Node.js API</li>\n<li>Rule, formatter, parser, plugin APIs</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<p dir=\"auto\">According to our policy, any minor update may report more linting errors than the previous release (ex: from a bug fix). As such, we recommend using the tilde (<code>~</code>) in <code>package.json</code> e.g. <code>\"eslint\": \"~3.1.0\"</code> to guarantee the results of your builds.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Stylistic Rule Updates</h2><a id=\"user-content-stylistic-rule-updates\" class=\"anchor\" aria-label=\"Permalink: Stylistic Rule Updates\" href=\"#stylistic-rule-updates\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Stylistic rules are frozen according to <a href=\"https://eslint.org/blog/2020/05/changes-to-rules-policies\" rel=\"nofollow\">our policy</a> on how we evaluate new rules and rule changes.\nThis means:</p>\n<ul dir=\"auto\">\n<li><strong>Bug fixes</strong>: We will still fix bugs in stylistic rules.</li>\n<li><strong>New ECMAScript features</strong>: We will also make sure stylistic rules are compatible with new ECMAScript features.</li>\n<li><strong>New options</strong>: We will <strong>not</strong> add any new options to stylistic rules unless an option is the only way to fix a bug or support a newly-added ECMAScript feature.</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">License</h2><a id=\"user-content-license\" class=\"anchor\" aria-label=\"Permalink: License\" href=\"#license\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a href=\"https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Feslint%2Feslint?ref=badge_large\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/4b553232afa6f74e53af49c85ebcae5b0fec8488718c1d9346526a91716614e7/68747470733a2f2f6170702e666f7373612e696f2f6170692f70726f6a656374732f67697425324268747470732533412532462532466769746875622e636f6d25324665736c696e7425324665736c696e742e7376673f747970653d6c61726765\" alt=\"FOSSA Status\" data-canonical-src=\"https://app.fossa.io/api/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Feslint%2Feslint.svg?type=large\" style=\"max-width: 100%;\"></a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Team</h2><a id=\"user-content-team\" class=\"anchor\" aria-label=\"Permalink: Team\" href=\"#team\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">These folks keep the project moving and are resources for help.</p>\n\n\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Technical Steering Committee (TSC)</h3><a id=\"user-content-technical-steering-committee-tsc\" class=\"anchor\" aria-label=\"Permalink: Technical Steering Committee (TSC)\" href=\"#technical-steering-committee-tsc\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">The people who manage releases, review feature requests, and meet regularly to ensure ESLint is properly maintained.</p>\n<markdown-accessiblity-table><table><tbody><tr><td align=\"center\" valign=\"top\" width=\"11%\">\n<a href=\"https://github.com/nzakas\">\n<img src=\"https://github.com/nzakas.png?s=75\" width=\"75\" height=\"75\" alt=\"Nicholas C. Zakas's Avatar\" style=\"max-width: 100%;\"><br>\nNicholas C. Zakas\n</a>\n</td><td align=\"center\" valign=\"top\" width=\"11%\">\n<a href=\"https://github.com/fasttime\">\n<img src=\"https://github.com/fasttime.png?s=75\" width=\"75\" height=\"75\" alt=\"Francesco Trotta's Avatar\" style=\"max-width: 100%;\"><br>\nFrancesco Trotta\n</a>\n</td><td align=\"center\" valign=\"top\" width=\"11%\">\n<a href=\"https://github.com/mdjermanovic\">\n<img src=\"https://github.com/mdjermanovic.png?s=75\" width=\"75\" height=\"75\" alt=\"Milos Djermanovic's Avatar\" style=\"max-width: 100%;\"><br>\nMilos Djermanovic\n</a>\n</td></tr></tbody></table></markdown-accessiblity-table>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Reviewers</h3><a id=\"user-content-reviewers\" class=\"anchor\" aria-label=\"Permalink: Reviewers\" href=\"#reviewers\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">The people who review and implement new features.</p>\n<markdown-accessiblity-table><table><tbody><tr><td align=\"center\" valign=\"top\" width=\"11%\">\n<a href=\"https://github.com/aladdin-add\">\n<img src=\"https://github.com/aladdin-add.png?s=75\" width=\"75\" height=\"75\" alt=\"唯然's Avatar\" style=\"max-width: 100%;\"><br>\n唯然\n</a>\n</td><td align=\"center\" valign=\"top\" width=\"11%\">\n<a href=\"https://github.com/snitin315\">\n<img src=\"https://github.com/snitin315.png?s=75\" width=\"75\" height=\"75\" alt=\"Nitin Kumar's Avatar\" style=\"max-width: 100%;\"><br>\nNitin Kumar\n</a>\n</td></tr></tbody></table></markdown-accessiblity-table>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Committers</h3><a id=\"user-content-committers\" class=\"anchor\" aria-label=\"Permalink: Committers\" href=\"#committers\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">The people who review and fix bugs and help triage issues.</p>\n<markdown-accessiblity-table><table><tbody><tr><td align=\"center\" valign=\"top\" width=\"11%\">\n<a href=\"https://github.com/JoshuaKGoldberg\">\n<img src=\"https://github.com/JoshuaKGoldberg.png?s=75\" width=\"75\" height=\"75\" alt=\"Josh Goldberg ✨'s Avatar\" style=\"max-width: 100%;\"><br>\nJosh Goldberg ✨\n</a>\n</td><td align=\"center\" valign=\"top\" width=\"11%\">\n<a href=\"https://github.com/Tanujkanti4441\">\n<img src=\"https://github.com/Tanujkanti4441.png?s=75\" width=\"75\" height=\"75\" alt=\"Tanuj Kanti's Avatar\" style=\"max-width: 100%;\"><br>\nTanuj Kanti\n</a>\n</td></tr></tbody></table></markdown-accessiblity-table>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Website Team</h3><a id=\"user-content-website-team\" class=\"anchor\" aria-label=\"Permalink: Website Team\" href=\"#website-team\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Team members who focus specifically on eslint.org</p>\n<markdown-accessiblity-table><table><tbody><tr><td align=\"center\" valign=\"top\" width=\"11%\">\n<a href=\"https://github.com/amareshsm\">\n<img src=\"https://github.com/amareshsm.png?s=75\" width=\"75\" height=\"75\" alt=\"Amaresh S M's Avatar\" style=\"max-width: 100%;\"><br>\nAmaresh S M\n</a>\n</td><td align=\"center\" valign=\"top\" width=\"11%\">\n<a href=\"https://github.com/harish-sethuraman\">\n<img src=\"https://github.com/harish-sethuraman.png?s=75\" width=\"75\" height=\"75\" alt=\"Strek's Avatar\" style=\"max-width: 100%;\"><br>\nStrek\n</a>\n</td><td align=\"center\" valign=\"top\" width=\"11%\">\n<a href=\"https://github.com/kecrily\">\n<img src=\"https://github.com/kecrily.png?s=75\" width=\"75\" height=\"75\" alt=\"Percy Ma's Avatar\" style=\"max-width: 100%;\"><br>\nPercy Ma\n</a>\n</td></tr></tbody></table></markdown-accessiblity-table>\n\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Sponsors</h2><a id=\"user-content-sponsors\" class=\"anchor\" aria-label=\"Permalink: Sponsors\" href=\"#sponsors\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">The following companies, organizations, and individuals support ESLint's ongoing maintenance and development. <a href=\"https://eslint.org/donate\" rel=\"nofollow\">Become a Sponsor</a> to get your logo on our README and website.</p>\n\n\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Platinum Sponsors</h3><a id=\"user-content-platinum-sponsors\" class=\"anchor\" aria-label=\"Permalink: Platinum Sponsors\" href=\"#platinum-sponsors\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a href=\"https://automattic.com\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/8db16efc27f055dd52528cdbbe1f17e03f1257cc431484fc66a548fd582afff3/68747470733a2f2f696d616765732e6f70656e636f6c6c6563746976652e636f6d2f6175746f6d61747469632f643065663365312f6c6f676f2e706e67\" alt=\"Automattic\" height=\"128\" data-canonical-src=\"https://images.opencollective.com/automattic/d0ef3e1/logo.png\" style=\"max-width: 100%;\"></a> <a href=\"https://www.airbnb.com/\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/325f3b66edd7f25a6977116965c954fc3af46a27e92c899fab3254e3aee799ed/68747470733a2f2f696d616765732e6f70656e636f6c6c6563746976652e636f6d2f616972626e622f643332376436362f6c6f676f2e706e67\" alt=\"Airbnb\" height=\"128\" data-canonical-src=\"https://images.opencollective.com/airbnb/d327d66/logo.png\" style=\"max-width: 100%;\"></a></p><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Gold Sponsors</h3><a id=\"user-content-gold-sponsors\" class=\"anchor\" aria-label=\"Permalink: Gold Sponsors\" href=\"#gold-sponsors\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a href=\"https://trunk.io/\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/180ed6279a9e71c02fb98ad824f64d9f85a04df120955cfb9b3c3f5345d4b61c/68747470733a2f2f696d616765732e6f70656e636f6c6c6563746976652e636f6d2f7472756e6b696f2f666239326436302f6176617461722e706e67\" alt=\"trunk.io\" height=\"96\" data-canonical-src=\"https://images.opencollective.com/trunkio/fb92d60/avatar.png\" style=\"max-width: 100%;\"></a></p><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Silver Sponsors</h3><a id=\"user-content-silver-sponsors\" class=\"anchor\" aria-label=\"Permalink: Silver Sponsors\" href=\"#silver-sponsors\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a href=\"https://www.jetbrains.com/\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/4cc5ad863fd81180ad30633639d78e29bdcab79bf1e58c06e302b9cacf4587bc/68747470733a2f2f696d616765732e6f70656e636f6c6c6563746976652e636f6d2f6a6574627261696e732f666537366639392f6c6f676f2e706e67\" alt=\"JetBrains\" height=\"64\" data-canonical-src=\"https://images.opencollective.com/jetbrains/fe76f99/logo.png\" style=\"max-width: 100%;\"></a> <a href=\"https://liftoff.io/\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/18ad9c6d83d8c5b647b1d536b7e59439d7e2e6ab01f121f5b2e488ba91b326ae/68747470733a2f2f696d616765732e6f70656e636f6c6c6563746976652e636f6d2f6c6966746f66662f356334666138342f6c6f676f2e706e67\" alt=\"Liftoff\" height=\"64\" data-canonical-src=\"https://images.opencollective.com/liftoff/5c4fa84/logo.png\" style=\"max-width: 100%;\"></a> <a href=\"https://americanexpress.io\" rel=\"nofollow\"><img src=\"https://avatars.githubusercontent.com/u/3853301?v=4\" alt=\"American Express\" height=\"64\" style=\"max-width: 100%;\"></a> <a href=\"https://www.workleap.com\" rel=\"nofollow\"><img src=\"https://avatars.githubusercontent.com/u/53535748?u=d1e55d7661d724bf2281c1bfd33cb8f99fe2465f&amp;v=4\" alt=\"Workleap\" height=\"64\" style=\"max-width: 100%;\"></a></p><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Bronze Sponsors</h3><a id=\"user-content-bronze-sponsors\" class=\"anchor\" aria-label=\"Permalink: Bronze Sponsors\" href=\"#bronze-sponsors\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a href=\"https://www.crosswordsolver.org/anagram-solver/\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/7ab0f2c27450639811c6ea0528ae937a1f6957ee50d710f5e34926db8a412cd0/68747470733a2f2f696d616765732e6f70656e636f6c6c6563746976652e636f6d2f616e616772616d2d736f6c7665722f323636363237312f6c6f676f2e706e67\" alt=\"Anagram Solver\" height=\"32\" data-canonical-src=\"https://images.opencollective.com/anagram-solver/2666271/logo.png\" style=\"max-width: 100%;\"></a> <a href=\"https://icons8.com/\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/2bf0634f9914c0cff38584aebb398d51c8ec70b33f63fecb2a64571538c43936/68747470733a2f2f696d616765732e6f70656e636f6c6c6563746976652e636f6d2f69636f6e73382f376661313634312f6c6f676f2e706e67\" alt=\"Icons8\" height=\"32\" data-canonical-src=\"https://images.opencollective.com/icons8/7fa1641/logo.png\" style=\"max-width: 100%;\"></a> <a href=\"https://discord.com\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/aba5b8dee14e34b14ae051693524e819b970e927f806940882e45c7a56962fff/68747470733a2f2f696d616765732e6f70656e636f6c6c6563746976652e636f6d2f646973636f72646170702f663936343564392f6c6f676f2e706e67\" alt=\"Discord\" height=\"32\" data-canonical-src=\"https://images.opencollective.com/discordapp/f9645d9/logo.png\" style=\"max-width: 100%;\"></a> <a href=\"https://nx.dev\" rel=\"nofollow\"><img src=\"https://avatars.githubusercontent.com/u/23692104?v=4\" alt=\"Nx\" height=\"32\" style=\"max-width: 100%;\"></a> <a href=\"https://herocoders.com\" rel=\"nofollow\"><img src=\"https://avatars.githubusercontent.com/u/37549774?v=4\" alt=\"HeroCoders\" height=\"32\" style=\"max-width: 100%;\"></a> <a href=\"https://usenextbase.com\" rel=\"nofollow\"><img src=\"https://avatars.githubusercontent.com/u/145838380?v=4\" alt=\"Nextbase Starter Kit\" height=\"32\" style=\"max-width: 100%;\"></a></p>\n\n\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Technology Sponsors</h2><a id=\"user-content-technology-sponsors\" class=\"anchor\" aria-label=\"Permalink: Technology Sponsors\" href=\"#technology-sponsors\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a href=\"https://netlify.com\" rel=\"nofollow\"><img src=\"https://raw.githubusercontent.com/eslint/eslint.org/main/src/assets/images/techsponsors/netlify-icon.svg\" alt=\"Netlify\" height=\"32\" style=\"max-width: 100%;\"></a> <a href=\"https://algolia.com\" rel=\"nofollow\"><img src=\"https://raw.githubusercontent.com/eslint/eslint.org/main/src/assets/images/techsponsors/algolia-icon.svg\" alt=\"Algolia\" height=\"32\" style=\"max-width: 100%;\"></a> <a href=\"https://1password.com\" rel=\"nofollow\"><img src=\"https://raw.githubusercontent.com/eslint/eslint.org/main/src/assets/images/techsponsors/1password-icon.svg\" alt=\"1Password\" height=\"32\" style=\"max-width: 100%;\"></a></p>\n\n</article>",
"loaded": true,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": [
{
"level": 1,
"text": "ESLint",
"anchor": "eslint",
"htmlText": "ESLint"
},
{
"level": 2,
"text": "Table of Contents",
"anchor": "table-of-contents",
"htmlText": "Table of Contents"
},
{
"level": 2,
"text": "Installation and Usage",
"anchor": "installation-and-usage",
"htmlText": "Installation and Usage"
},
{
"level": 2,
"text": "Configuration",
"anchor": "configuration",
"htmlText": "Configuration"
},
{
"level": 2,
"text": "Version Support",
"anchor": "version-support",
"htmlText": "Version Support"
},
{
"level": 2,
"text": "Code of Conduct",
"anchor": "code-of-conduct",
"htmlText": "Code of Conduct"
},
{
"level": 2,
"text": "Filing Issues",
"anchor": "filing-issues",
"htmlText": "Filing Issues"
},
{
"level": 2,
"text": "Frequently Asked Questions",
"anchor": "frequently-asked-questions",
"htmlText": "Frequently Asked Questions"
},
{
"level": 3,
"text": "Does ESLint support JSX?",
"anchor": "does-eslint-support-jsx",
"htmlText": "Does ESLint support JSX?"
},
{
"level": 3,
"text": "Does Prettier replace ESLint?",
"anchor": "does-prettier-replace-eslint",
"htmlText": "Does Prettier replace ESLint?"
},
{
"level": 3,
"text": "What ECMAScript versions does ESLint support?",
"anchor": "what-ecmascript-versions-does-eslint-support",
"htmlText": "What ECMAScript versions does ESLint support?"
},
{
"level": 3,
"text": "What about experimental features?",
"anchor": "what-about-experimental-features",
"htmlText": "What about experimental features?"
},
{
"level": 3,
"text": "Which Node.js versions does ESLint support?",
"anchor": "which-nodejs-versions-does-eslint-support",
"htmlText": "Which Node.js versions does ESLint support?"
},
{
"level": 3,
"text": "Where to ask for help?",
"anchor": "where-to-ask-for-help",
"htmlText": "Where to ask for help?"
},
{
"level": 3,
"text": "Why doesn't ESLint lock dependency versions?",
"anchor": "why-doesnt-eslint-lock-dependency-versions",
"htmlText": "Why doesn't ESLint lock dependency versions?"
},
{
"level": 2,
"text": "Releases",
"anchor": "releases",
"htmlText": "Releases"
},
{
"level": 2,
"text": "Security Policy",
"anchor": "security-policy",
"htmlText": "Security Policy"
},
{
"level": 2,
"text": "Semantic Versioning Policy",
"anchor": "semantic-versioning-policy",
"htmlText": "Semantic Versioning Policy"
},
{
"level": 2,
"text": "Stylistic Rule Updates",
"anchor": "stylistic-rule-updates",
"htmlText": "Stylistic Rule Updates"
},
{
"level": 2,
"text": "License",
"anchor": "license",
"htmlText": "License"
},
{
"level": 2,
"text": "Team",
"anchor": "team",
"htmlText": "Team"
},
{
"level": 3,
"text": "Technical Steering Committee (TSC)",
"anchor": "technical-steering-committee-tsc",
"htmlText": "Technical Steering Committee (TSC)"
},
{
"level": 3,
"text": "Reviewers",
"anchor": "reviewers",
"htmlText": "Reviewers"
},
{
"level": 3,
"text": "Committers",
"anchor": "committers",
"htmlText": "Committers"
},
{
"level": 3,
"text": "Website Team",
"anchor": "website-team",
"htmlText": "Website Team"
},
{
"level": 2,
"text": "Sponsors",
"anchor": "sponsors",
"htmlText": "Sponsors"
},
{
"level": 3,
"text": "Platinum Sponsors",
"anchor": "platinum-sponsors",
"htmlText": "Platinum Sponsors"
},
{
"level": 3,
"text": "Gold Sponsors",
"anchor": "gold-sponsors",
"htmlText": "Gold Sponsors"
},
{
"level": 3,
"text": "Silver Sponsors",
"anchor": "silver-sponsors",
"htmlText": "Silver Sponsors"
},
{
"level": 3,
"text": "Bronze Sponsors",
"anchor": "bronze-sponsors",
"htmlText": "Bronze Sponsors"
},
{
"level": 2,
"text": "Technology Sponsors",
"anchor": "technology-sponsors",
"htmlText": "Technology Sponsors"
}
],
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Feslint%2Feslint"
}
},
{
"displayName": "CODE_OF_CONDUCT.md",
"repoName": ".github",
"refName": "master",
"path": "CODE_OF_CONDUCT.md",
"preferredFileType": "code_of_conduct",
"tabName": "Code of conduct",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Feslint%2Feslint"
}
},
{
"displayName": "LICENSE",
"repoName": "eslint",
"refName": "main",
"path": "LICENSE",
"preferredFileType": "license",
"tabName": "MIT",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Feslint%2Feslint"
}
},
{
"displayName": "SECURITY.md",
"repoName": ".github",
"refName": "master",
"path": "SECURITY.md",
"preferredFileType": "security",
"tabName": "Security",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Feslint%2Feslint"
}
}
],
"overviewFilesProcessingTime": 0
}
},
"appPayload": {
"helpUrl": "https://docs.github.com",
"findFileWorkerPath": "/assets-cdn/worker/find-file-worker-1583894afd38.js",
"findInFileWorkerPath": "/assets-cdn/worker/find-in-file-worker-03b87d52cf57.js",
"githubDevUrl": null,
"enabled_features": {
"code_nav_ui_events": false,
"overview_shared_code_dropdown_button": false,
"react_blob_overlay": false,
"copilot_conversational_ux_embedding_update": false,
"copilot_smell_icebreaker_ux": true,
"copilot_workspace": false
}
}
}
}
{
"accept-ranges": "bytes",
"cache-control": "max-age=0, private, must-revalidate",
"content-encoding": "gzip",
"content-security-policy": "default-src 'none'; base-uri 'self'; child-src github.com/assets-cdn/worker/ github.com/webpack/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com api.githubcopilot.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com/v1/engines/github-completion/completions proxy.enterprise.githubcopilot.com/v1/engines/github-completion/completions *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.com/assets-cdn/worker/ github.com/webpack/ github.com/assets/ gist.github.com/assets-cdn/worker/",
"content-type": "text/html; charset=utf-8",
"date": "Thu, 12 Sep 2024 11:33:11 GMT",
"etag": "06061a8b05847d7a11e1f4165045b2c5",
"referrer-policy": "no-referrer-when-downgrade",
"server": "GitHub.com",
"set-cookie": "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 12 Sep 2025 11:33:11 GMT; HttpOnly; Secure; SameSite=Lax",
"strict-transport-security": "max-age=31536000; includeSubdomains; preload",
"transfer-encoding": "chunked",
"vary": "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, Accept-Encoding, Accept, X-Requested-With",
"x-content-type-options": "nosniff",
"x-frame-options": "deny",
"x-github-request-id": "830E:2F73AB:2B3B78A:3B8EDB5:66E2D172",
"x-xss-protection": "0"
}