jsjavascriptnodejsnodeeslinteslint-configeslint-config-airbnbeslint-configseslint-ruleseslint-shareable-configs
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.
Reviewed-on: #21 |
1 month ago | |
---|---|---|
.github/workflows | 1 month ago | |
.vscode | 1 year ago | |
.editorconfig | 10 months ago | |
.eslintignore | 2 years ago | |
.eslintrc | 2 years ago | |
.gitattributes | 2 years ago | |
.gitignore | 2 years ago | |
LICENSE.md | 2 years ago | |
Makefile | 4 months ago | |
README.md | 8 months ago | |
index.js | 4 months ago | |
package.json | 1 month ago | |
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": {}
}