@prodo-ai/eslint-plugin-prodo
v1.0.0
Published
Prodo's custom ESLint stuff
Downloads
5
Readme
eslint-plugin-prodo
Prodo's custom ESLint stuff
Installation
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-prodo
:
$ npm install eslint-plugin-prodo --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-prodo
globally.
Usage
Add prodo
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"prodo"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"prodo/sort-imports-by-path": ["error", {
"sortOrder": ["type", "named", "unnamed"],
"enforceBlankLine": true,
"enforceTrailingLine": true,
"ignoreCase": true
}],
}
}
Supported Rules
sort-imports-by-path