plugin for spa production project with totally custom settings
You'll first need to install ESLint:
npm i eslint --save-dev
Next, install eslint-plugin-constantin-dot-plugin
:
npm install eslint-plugin-constantin-dot-plugin --save-dev
Add constantin-dot-plugin
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"constantin-dot-plugin"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"constantin-dot-plugin/rule-name": 2
}
}
TODO: Run eslint-doc-generator to generate the rules list.