eslint-plugin-defensive-js
v0.0.1
Published
a specific eslint plugin for new birds
Downloads
5
Maintainers
Readme
eslint-plugin-test
test
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-test:
$ npm install eslint-plugin-test --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-test globally.
Usage
Add test to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"test"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"test/rule-name": 2
}
}Supported Rules
- Fill in provided rules here
It has to deal with following cases:
if (a.length > 0)a.bora.b.c.
const a = false
const b = a || true // a = true, but we want b = falsea.map // what if a is a object
online AST parser
https://astexplorer.net/
