eslint-config
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.
![Test Status](https://img.shields.io/github/actions/workflow/status/stevenbenner/eslint-config/run-tests.yml?label=tests&style=flat-square)
Usage
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 your env
, parserOptions
, and any other project specific ESLint settings in your project's ESLint configuration file(s).