eslint-plugin-almedin
v1.5.7
Published
Testing plugn
Downloads
39
Maintainers
Readme
eslint-plugin-test
Testing plugin
Installation
You'll first need to install ESLint:
npm i eslint --save-dev
Next, install eslint-plugin-test
:
npm install eslint-plugin-test --save-dev
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