mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-15 18:08:32 -07:00
22 lines
493 B
JSON
22 lines
493 B
JSON
{
|
|
"env": {
|
|
"jest/globals": true,
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"extends": ["eslint:recommended", "google", "plugin:jest/recommended", "plugin:jest/style"],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"require-jsdoc": "off",
|
|
"indent": ["error", 4],
|
|
"max-len": ["error", { "code": 120 }],
|
|
"no-prototype-builtins": "off"
|
|
},
|
|
"plugins": [
|
|
"jest"
|
|
]
|
|
}
|