0.0.0 • Published 7 months ago
eslint-plugin-no-console-ocean v0.0.0
eslint-plugin-no-console-ocean
test
Installation
You'll first need to install ESLint:
npm i eslint --save-dev
Next, install eslint-plugin-no-console-ocean
:
npm install eslint-plugin-no-console-ocean --save-dev
Usage
In your configuration file, import the plugin eslint-plugin-no-console-ocean
and add no-console-ocean
to the plugins
key:
import no-console-ocean from "eslint-plugin-no-console-ocean";
export default [
{
plugins: {
no-console-ocean
}
}
];
Then configure the rules you want to use under the rules
key.
import no-console-ocean from "eslint-plugin-no-console-ocean";
export default [
{
plugins: {
no-console-ocean
},
rules: {
"no-console-ocean/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.
0.0.0
7 months ago