1.0.2 • Published 4 years ago
eslint-plugin-no-process-lint v1.0.2
eslint-plugin-vite-lint
eslint for vite
Installation
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-no-process-lint:
npm install eslint-plugin-no-process-lint --save-devUsage
Add no-process-lint to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"no-process-lint"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"no-process-lint/no-process": 2,
"no-process-lint/no-require": 2
}
}Supported Rules
- Fill in provided rules here