Update lint tools (#2576)

* Update lint

* Prettier Hass.io

* Update prettier
This commit is contained in:
Paulus Schoutsen
2019-01-26 19:34:07 -08:00
committed by GitHub
parent 5a6d537d43
commit 8db111c2fb
68 changed files with 1174 additions and 1475 deletions

View File

@@ -63,15 +63,13 @@ class HuiInputSelectEntityRow extends LitElement implements EntityRow {
slot="dropdown-content"
selected="${stateObj.attributes.options.indexOf(stateObj.state)}"
>
${
repeat(
stateObj.attributes.options,
(option) =>
html`
<paper-item>${option}</paper-item>
`
)
}
${repeat(
stateObj.attributes.options,
(option) =>
html`
<paper-item>${option}</paper-item>
`
)}
</paper-listbox>
</paper-dropdown-menu>
`;