A sensibly strict ESLint configuration.
This is my set of ESLint rules for verifying JavaScript. It is meant to be used with the "eslint:recommended" rules.
This software is licensed under the MIT license.
Install the @stevenbenner/eslint-config package in your project with npm:
npm install @stevenbenner/eslint-config --save-dev
Then add the extends to your project's root ESLint configuration file:
"extends": [
"eslint:recommended",
"@stevenbenner/eslint-config"
]
Note
This package only contains ESLint rules. You will also want to set yourenv
,parserOptions
, and any other project specific ESLint settings in your project's ESLint configuration file(s).