eslint-plugin-woden-plugin
v0.1.13
Published
plugin for production project
Downloads
63
Maintainers
Readme
eslint-plugin-woden-plugin
plugin for production project
Installation
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-woden-plugin:
npm install eslint-plugin-woden-plugin --save-devUsage
In your configuration file, import the plugin eslint-plugin-woden-plugin and add woden-plugin to the plugins key:
import woden-plugin from "eslint-plugin-woden-plugin";
export default [
{
plugins: {
woden-plugin
}
}
];Then configure the rules you want to use under the rules key.
import woden-plugin from "eslint-plugin-woden-plugin";
export default [
{
plugins: {
woden-plugin
},
rules: {
"woden-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.
