mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-19 10:57:19 +00:00
33 lines
588 B
Plaintext
33 lines
588 B
Plaintext
{
|
|
"extends": "airbnb-base",
|
|
"globals": {
|
|
"__DEV__": false,
|
|
"__DEMO__": false,
|
|
"Polymer": true,
|
|
"webkitSpeechRecognition": false,
|
|
},
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"rules": {
|
|
"new-cap": 0,
|
|
"prefer-template": 0,
|
|
"object-shorthand": 0,
|
|
"func-names": 0,
|
|
"prefer-arrow-callback": 0,
|
|
"no-underscore-dangle": 0,
|
|
"no-var": 0,
|
|
"strict": 0,
|
|
"prefer-spread": 0,
|
|
"no-plusplus": 0,
|
|
"no-bitwise": 0,
|
|
"comma-dangle": 0,
|
|
"vars-on-top": 0,
|
|
"no-continue": 0,
|
|
"no-param-reassign": 0
|
|
},
|
|
plugins: [
|
|
"html"
|
|
]
|
|
}
|