eslint-plugin-my-first-plugin888
v0.0.4
Published
my first plugin for knowlege
Downloads
352
Maintainers
Readme
eslint-plugin-my-first-plugin888
my first plugin for knowlege
Installation
You'll first need to install ESLint:
npm i eslint --save-dev
Next, install eslint-plugin-my-first-plugin888
:
npm install eslint-plugin-my-first-plugin888 --save-dev
Usage
In your configuration file, import the plugin eslint-plugin-my-first-plugin888
and add my-first-plugin888
to the plugins
key:
import my-first-plugin888 from "eslint-plugin-my-first-plugin888";
export default [
{
plugins: {
my-first-plugin888
}
}
];
Then configure the rules you want to use under the rules
key.
import my-first-plugin888 from "eslint-plugin-my-first-plugin888";
export default [
{
plugins: {
my-first-plugin888
},
rules: {
"my-first-plugin888/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.