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