eslint-plugin-appfollow
v0.0.6
Published
ESLint Structure Plugin for Appfollow Frontend
Readme
eslint-plugin-appfollow
ESLint Plugin for Appfollow Frontend
Installation
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-appfollow:
npm install eslint-plugin-appfollow --save-devUsage
Add appfollow to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"appfollow"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"appfollow/structure": 2
}
}