zigbee2mqtt/.eslintrc.json

22 lines
493 B
JSON
Raw Normal View History

2018-04-18 10:09:59 -07:00
{
"env": {
"jest/globals": true,
"es6": true,
2018-04-18 10:09:59 -07:00
"node": true
},
"extends": ["eslint:recommended", "google", "plugin:jest/recommended", "plugin:jest/style"],
2018-04-18 10:09:59 -07:00
"parserOptions": {
"ecmaVersion": 2018,
2018-04-18 10:09:59 -07:00
"sourceType": "module"
},
"rules": {
2018-05-17 08:20:46 -07:00
"require-jsdoc": "off",
"indent": ["error", 4],
2019-06-23 07:10:44 -07:00
"max-len": ["error", { "code": 120 }],
"no-prototype-builtins": "off"
2018-08-15 13:19:54 -07:00
},
"plugins": [
"jest"
2018-08-15 13:19:54 -07:00
]
2018-05-17 08:20:46 -07:00
}