1.0.5 • Published 1 year ago

eslint-plugin-mongoidcompare v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

eslint-plugin-mongoidcompare

NPM

Custom eslint rules

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Since We have used a rule which requires parserServices to be generated. You must therefore provide a value for the "parserOptions.project"

{
  "parser": "@typescript-eslint/parser",
  "parserOptions": {
    "project": "./tsconfig.json"
  },
}

Next, install eslint-plugin-mongoidcompare:

$ npm install eslint-plugin-mongoidcompare --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-mongoidcompare globally.

Usage

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

{
    "plugins": [
        "mongoidcompare"
    ]
}

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

{
    "rules": {
        "mongoidcompare/no-triple-equality-check": 2
    }
}

Supported Rules

Take a look at doc.md to see when we would want to use this linting rule.

Future Work

implement fix a function that applies a fix to resolve the problem.