2.2.9 • Published 3 years ago
@ghadyani-eslint/eslint-plugin-rules v2.2.9
Various rules both custom and modified from various sources.
@ghadyani-eslint/eslint-plugin-rules
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-rules --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/rules to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"@ghadyani-eslint/rules"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"@ghadyani-eslint/rules/proper-ternary-nesting": [ "error" ],
"@ghadyani-eslint/rules/proper-ternary-parens": [ "error" ]
}
}