mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-17 10:58:31 -07:00
0322354c37
* network map, more info * add a get(All)Devices method to zigbee * graphviz: display all devices loop through all devices, display all devices even those that haven't responded to the lqi scan. * makes eslint happy :) * remove null chars from network map graphviz output makes graphviz happy :-) * Improvements to graphviz network map * Always add device type
21 lines
421 B
JSON
21 lines
421 B
JSON
{
|
|
"env": {
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"extends": ["eslint:recommended", "google"],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"require-jsdoc": "off",
|
|
"indent": ["error", 4],
|
|
"max-len": ["error", { "code": 120 }],
|
|
"mocha/no-exclusive-tests": "error"
|
|
},
|
|
"plugins": [
|
|
"mocha"
|
|
]
|
|
}
|