Плагин eslint, который может устранить 996
Адрес на гитхабе:Github.com/ репутация 198736 ...
текущий результат
Feature list
- Изменения кода запрещены после 18:00 ежедневно
- Суббота и воскресенье Код не меняется
Installation
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-nns
:
$ npm install eslint-plugin-nns --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-nns
globally.
Usage
Add nns
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"nns"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"nns/no-illegal-working-time": "error"
}
}