/eslint-config

:white_check_mark: A sensibly strict ESLint configuration.

Primary LanguageJavaScriptMIT LicenseMIT

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.

NPM version Test Status

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).