ha-frontend/.eslintrc

33 lines
588 B
Plaintext
Raw Normal View History

2015-07-13 01:57:15 +02:00
{
2016-04-28 16:19:27 +02:00
"extends": "airbnb-base",
2015-07-13 01:57:15 +02:00
"globals": {
"__DEV__": false,
"__DEMO__": false,
"Polymer": true,
"webkitSpeechRecognition": false,
},
2016-07-17 08:19:49 +02:00
"env": {
"browser": true
},
"rules": {
"new-cap": 0,
"prefer-template": 0,
"object-shorthand": 0,
"func-names": 0,
"prefer-arrow-callback": 0,
"no-underscore-dangle": 0,
2016-06-11 04:44:20 +02:00
"no-var": 0,
2016-08-08 09:38:26 +02:00
"strict": 0,
2016-09-08 06:48:30 +02:00
"prefer-spread": 0,
"no-plusplus": 0,
2016-11-27 02:43:55 +01:00
"no-bitwise": 0,
"comma-dangle": 0,
"vars-on-top": 0,
"no-continue": 0,
"no-param-reassign": 0
2016-07-18 08:18:48 +02:00
},
plugins: [
"html"
]
2015-07-13 01:57:15 +02:00
}