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
Repository https://github.com/eslint/eslintrc
Videos
04:26
Intro to ESLint and Init eslintrc File - YouTube
10:56
Customizing Eslint with eslintrc - YouTube
08:16
VSCode and ESLint Setup - YouTube
19:15
How to Use ESLint in VSCode for JavaScript Projects | Set Up ESLint ...
11:32
3. Everything You Wanted to Know About ESLint configuration file ...
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 ......
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
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.
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.
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 › 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