@ghadyani-eslint/eslint-plugin-eslint-overrides
v2.2.10
Published
Rules to override ESLint, so I don't have to wait on PRs to get approved in the official repo.
Downloads
27
Maintainers
Readme
Originally copied straight from https://github.com/eslint/eslint and modified.
@ghadyani-eslint/eslint-plugin-eslint-overrides
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-arrow-body-parens:
$ npm install @ghadyani-eslint/eslint-plugin-eslint-overrides --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-arrow-body-parens globally.
Usage
Add @ghadyani-eslint/eslint-overrides to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"@ghadyani-eslint/eslint-overrides"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"@ghadyani-eslint/eslint-overrides/indent": [ "error" ]
"@ghadyani-eslint/eslint-overrides/multiline-ternary": [ "error" ]
"@ghadyani-eslint/eslint-overrides/newline-per-chained-call": [ "error" ]
}
}