1.0.2 • Published 2 years ago

eslint-plugin-no-process-lint v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

eslint-plugin-vite-lint

eslint for vite

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-no-process-lint:

npm install eslint-plugin-no-process-lint --save-dev

Usage

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