eslint-plugin-acid-plugin2
v0.3.6
Published
plugin for production project
Maintainers
Readme
eslint-plugin-acid-plugin
plugin for production project
Installation
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-acid-plugin:
npm install eslint-plugin-acid-plugin --save-devUsage
In your configuration file, import the plugin eslint-plugin-acid-plugin and add acid-plugin to the plugins key:
import acid-plugin from "eslint-plugin-acid-plugin";
export default [
{
plugins: {
acid-plugin
}
}
];Then configure the rules you want to use under the rules key.
import acid-plugin from "eslint-plugin-acid-plugin";
export default [
{
plugins: {
acid-plugin
},
rules: {
"acid-plugin/rule-name": "warn"
}
}
];Configurations
TODO: Run eslint-doc-generator to generate the configs list (or delete this section if no configs are offered).
Rules
TODO: Run eslint-doc-generator to generate the rules list.
