3.0.0 • Published 10 months ago
@tidio/eslint-plugin-rules v3.0.0
eslint-plugin-rules
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install @tidio/eslint-plugin-rules:
$ npm install @tidio/eslint-plugin-rules --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install @tidio/eslint-plugin-rules globally.
Usage
Add @tidio/eslint-plugin-rules to the plugins section of your .eslintrc configuration file.
{
  "plugins": ["@tidio/rules"]
}Then configure the rules you want to use under the rules section.
{
  "rules": {
    "@tidio/rules/rule-name": 2
  }
}