0.0.1 • Published 3 years ago

eslint-plugin-feq v0.0.1

Weekly downloads
1
License
ISC
Repository
-
Last release
3 years ago

eslint-plugin-feq

Custom rules.

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-feq:

npm install eslint-plugin-feq --save-dev

Usage

Add feq to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
  "plugins": ["feq"]
}

Then configure the rules you want to use under the rules section.

{
  "rules": {
    "feq/no-undef": ["error", { "prefix": "JSP__" }]
  }
}

Supported Rules

  • Fill in provided rules here