1.0.0 • Published 7 months ago

eslint-plugin-no-dates v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
7 months ago

eslint-plugin-no-dates

Prevent usage of Date(); force usage to DateTimeUtils

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-no-dates:

npm install eslint-plugin-no-dates --save-dev

Usage

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

{
    "plugins": [
        "no-dates"
    ]
}

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

{
    "rules": {
        "no-dates/rule-name": 2
    }
}

Rules

TODO: Run eslint-doc-generator to generate the rules list.

1.0.0

7 months ago

0.0.1

7 months ago

0.0.0

7 months ago