🌐
npm
npmjs.com › package › @eslint › eslintrc
eslint/eslintrc
Latest version: 3.3.5, last published: 4 days ago. Start using @eslint/eslintrc in your project by running `npm i @eslint/eslintrc`. There are 578 other projects in the npm registry using @eslint/eslintrc.
      » npm install @eslint/eslintrc
    
Published   Mar 06, 2026
Version   3.3.5
Author   Nicholas C. Zakas
🌐
Duncanleung
duncanleung.com › how to setup eslint .eslintrc config
How to Setup ESLint .eslintrc Config – Duncan Leung
Jump to an article section: ESLint: An Overview Step by Step: How to Configure .eslintrc 💡 How to Determine the Required ESLint Config I…
🌐
ESLint
eslint.org › docs › latest › use › getting-started
Getting Started with ESLint - ESLint - Pluggable JavaScript Linter
Ways to Extend ESLint · Create Plugins · Custom Rule Tutorial · Custom Rules · Custom Processors · Languages · Migration to Flat Config · Share Configurations · Custom Formatters · Custom Parsers · Stats Data · integrate ESLint · Integrate with the Node.js API Tutorial ·
🌐
ESLint
eslint.org › docs › latest › use › configure
Configure ESLint - ESLint - Pluggable JavaScript Linter
Configuration Files - use a JavaScript file to specify configuration information for an entire directory and all of its subdirectories. This can be in the form of an eslint.config.js file which ESLint will look for and read automatically, or you can specify a configuration file on the command line.
🌐
ESLint
archive.eslint.org › docs › 7.0.0 › user-guide › configuring
Configuring ESLint
There are two primary ways to configure ESLint: Configuration Comments - use JavaScript comments to embed configuration information directly into a file. Configuration Files - use a JavaScript, JSON or YAML file to specify configuration information for an entire directory and all of its subdirectories. This can be in the form of an .eslintrc.* file or an eslintConfig field in a package.json file, both of which ESLint will look for and read automatically, or you can specify a configuration file on the command line.
🌐
Mastering JS
masteringjs.io › tutorials › eslint › config
Intro to ESLint Config Files - Mastering JS
If the rule configuration is an ... that individual rule. For example, the below .eslintrc.json tells ESLint to error out when any line of code is more than ......
🌐
GitHub
gist.github.com › adrianhall › 70d63d225e536b4563b2
A sample .eslintrc file · GitHub
for example, after you run eslint, you might see something like: Warning: 1:2 warning More than 2 blank lines not allowed no-multiple-empty-lines Error: 2:34 error 'pick' is defined but never used no-unused-vars you can set the error level in your .eslintrc.js (under "rules") like: "semi": 2
🌐
ESLint
archive.eslint.org › docs › user-guide › getting-started
Getting Started with ESLint
The three error levels allow you fine-grained control over how ESLint applies rules (for more configuration options and details, see the configuration docs). Your .eslintrc.{js,yml,json} configuration file will also include the line:
🌐
GitHub
github.com › eslint › eslintrc
GitHub - eslint/eslintrc: The legacy ESLintRC config file format for ESLint · GitHub
npm install @eslint/eslintrc -D # or yarn add @eslint/eslintrc -D # or pnpm install @eslint/eslintrc -D # or bun install @eslint/eslintrc -D
Author   eslint
Find elsewhere
🌐
TypeScript ESlint
typescript-eslint.io › getting-started
Getting Started | typescript-eslint
This page is a quick-start for ESLint's new "flat" config format to go from zero to linting with our recommended rules on your TypeScript code as quickly as possible.
🌐
ESLint
eslint.org › docs › latest › use › configure › migration-guide
Configuration Migration Guide - ESLint - Pluggable JavaScript Linter
While you should file an issue with the particular plugin, you can manually patch the plugin to work in ESLint v9.x using the compatibility utilities. In eslintrc files, importing a custom parser is similar to importing a plugin: you use a string to specify the name of the parser.
🌐
Medium
medium.com › @olivier.trinh › how-to-configure-eslint-8ff6e4f81367
How to configure ESLint
September 18, 2023 - The following is an example of a simple .eslintrc.js file: module.exports = { rules: { 'no-unused-vars': 'error', 'no-console-log': 'warn', }, }; This configuration file enables the no-unused-vars rule with an error severity, and the no-console-log rule with a warn severity. You can also use configuration files to extend other configuration files. For example, the following configuration file extends the eslint-config-airbnb configuration file:
🌐
ESLint
denar90.github.io › eslint.github.io › docs › user-guide › getting-started
Getting Started with ESLint
After running eslint --init, you’ll have a .eslintrc file in your directory.
🌐
Dave Ceddia
daveceddia.com › vscode-use-eslintrc
ESLint + VSCode: How to Format Your Code Using .eslintrc
how to set up eslint, how to create the .eslintrc file, etc etc… but I didn’t need that. I have an existing project, I just want to configure VSCode to use ESLint instead of Prettier.
🌐
ESLint
eslint.org › docs › latest › use › configure › configuration-files
Configuration Files - ESLint - Pluggable JavaScript Linter
Ways to Extend ESLint · Create Plugins · Custom Rule Tutorial · Custom Rules · Custom Processors · Languages · Migration to Flat Config · Share Configurations · Custom Formatters · Custom Parsers · Stats Data · integrate ESLint · Integrate with the Node.js API Tutorial ·
🌐
Raul Melo
raulmelo.me › en › blog › migration-eslint-to-flat-config
Embrace the Future: Navigating the New Flat Configuration of ESLint · Raul Melo
July 20, 2023 - This behavior could be inverted if you run the eslint binary with ESLINT_USE_FLAT_CONFIG=false. In the eslintrc, we could only write CJS syntax. With the new flat config, we can write either ESM or CJS. Writting one or another will depends on your ecosystem. ... For the sake of this tutorial, I'm going to write most of the examples using ESM syntax.
🌐
GitHub
github.com › eslint › eslint
GitHub - eslint/eslint: Find and fix problems in your JavaScript code. · GitHub
Find and fix problems in your JavaScript code. Contribute to eslint/eslint development by creating an account on GitHub.
Author   eslint
🌐
GitHub
github.com › andy6804tw › ESLint_tutorial › blob › master › .eslintrc
ESLint_tutorial/.eslintrc at master · andy6804tw/ESLint_tutorial
ESLint tutorial start kit. Contribute to andy6804tw/ESLint_tutorial development by creating an account on GitHub.
Author   andy6804tw
🌐
Medium
medium.com › @ritz.sh › understanding-eslint-configuration-eslintrc-js-vs-eslintrc-vs-eslintrc-json-287ec5e95bf4
Understanding ESLint Configuration: .eslintrc.js vs .eslintrc vs .eslintrc.json | by Rizul sharma | Medium
March 7, 2024 - Understanding ESLint Configuration: .eslintrc.js vs .eslintrc vs .eslintrc.json ESLint stands as a cornerstone tool in the JavaScript ecosystem, helping developers maintain code quality and adhere to …