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