0.0.2 • Published 5 years ago
eslint-plugin-okay v0.0.2
eslint-plugin-okay
A set of eslint rules for fast frontend development
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-okay:
$ npm install eslint-plugin-okay --save-devUsage
Add okay to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"okay"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"okay/rule-name": 2
}
}Supported Rules
- Fill in provided rules here