Ntt MII Demo PLugin
You'll first need to install ESLint:
npm i eslint --save-dev
Next, install eslint-plugin-nttdata-me-mii
:
npm install eslint-plugin-nttdata-me-mii --save-dev
Add nttdata-me-mii
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": ["nttdata-me-mii"]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"nttdata-me-mii/rule-name": 2
}
}
TODO: Run eslint-doc-generator to generate the rules list.