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