ha-frontend-cdce8p/.eslintrc
Paulus Schoutsen 67b59f1976 Shadow dom fixes (#241)
* Fix color picker

* Fix map panel CSS

* Convert logbook to use vaadin date picker

* Fix logbook clear date

* Migrate history panel to use vaadin date picker

* Remove pikaday

* Lint

* history panel: disable on loading
2017-03-19 21:55:52 -07:00

35 lines
632 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,
"no-multi-assign": 0,
"radix": 0
},
"plugins": [
"html"
]
}