ESLint pluging to prevent usage of local time with moment.js.
npm install eslint-plugin-moment-utc 
This is an ESLint plugin to prevent the usage of localtime.
You'll first need to install ESLint:
``sh`
npm i eslint --save-dev
Next, install eslint-plugin-moment-utc:
`sh`
npm install eslint-plugin-moment-utc --save-dev
Note: If you installed ESLint globally (using the -g flag) then you musteslint-plugin-moment-utc
also install globally.
Add utc to the plugins section of your .eslintrc configuration file. You caneslint-plugin-
omit the prefix:
`json`
{
"plugins": [
"moment-utc"
]
}
Then configure the rules you want to use under the rules section.
`json``
{
"rules": {
"moment-utc/no-moment-without-utc": 2
}
}