eslint-plugin-no-dates
v1.0.0
Published
Prevent usage of Date(); force usage to DateTimeUtils
Downloads
65
Maintainers
Readme
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.