My Personal ESLint Config.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
Chase fc9afa4505
lint Details
publish Details
Merge pull request 'Update dependency eslint-plugin-unicorn to v49' (#21) from renovate/eslint-plugin-unicorn-49.x into main
Reviewed-on: #21
1 month ago
.github/workflows Update actions/setup-node action to v4 1 month ago
.vscode `.editorconfig` [skip ci] 1 year ago
.editorconfig No longer warn for console.log's (v1.0.6) 10 months ago
.eslintignore v1.0.0 2 years ago
.eslintrc v1.0.0 2 years ago
.gitattributes v1.0.0 2 years ago
.gitignore yeet lockfile 2 years ago
LICENSE.md v1.0.0 2 years ago
Makefile Add rule to prevent "openapi" jsdoc from throwing an error. 4 months ago
README.md upd. deps 8 months ago
index.js Fix import/no-extraneous-dependencies. 4 months ago
package.json Update dependency eslint-plugin-unicorn to v49 1 month ago
renovate.json Add renovate.json 8 months ago

README.md

My Personal ESLint Config.

Installation

npm i eslint eslint-plugin-import eslint-plugin-unicorn eslint-plugin-jsdoc eslint-config-chase --save-dev

Then, extend your config file with chase.

// .eslintrc.json
{
    "env": {
        "es2021": true,
        "node": true
    },
    "extends": [
        "chase"
    ],
    "parserOptions": {
        "ecmaVersion": "latest",
        "sourceType": "module"
    },
    "rules": {},
    "globals": {}
}