eslint-plugin-momentjs
v0.0.10
Published
ESLint rule plugin to enforce moment.js style
Readme
eslint-plugin-momentjs
Moment.js code style rules. See the documentation in the docs/ folder for more information on the specific rules.
Note: This project has no affiliation with the ESLint team or the Moment.js team.
Installation
Prerequisites
Install ESLint if you haven't already. ESLint installation instructions can be found here.
Plugin installation
Install eslint-plugin-momentjs.
npm i eslint-plugin-momentjs --save-devAdd the plugin to your .eslintrc configuration.
...
"plugins": [
"momentjs"
],
...Configure the rules. More information
"rules": {
"momentjs/some-rule": "warn",
"momentjs/some-other-rule": "error",
...
}