1.1.0 • Published 4 years ago
eslint-plugin-date-timezone v1.1.0
eslint-plugin-date-timezone
This plugin allows to validate usage of Date to work appriopriatly with timezones
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-date-timezone:
$ npm install eslint-plugin-date-timezone --save-devUsage
Add date-timezone to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": ["date-timezone"]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"date-timezone/no-date-from-string": 2
}
}