eslint-plugin-no-console-ocean
v0.0.0
Published
test
Maintainers
Readme
eslint-plugin-no-console-ocean
test
Installation
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-no-console-ocean:
npm install eslint-plugin-no-console-ocean --save-devUsage
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.
