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

@@ -32,19 +32,17 @@ export class HuiEntityEditor extends LitElement {
${this.renderStyle()}
<h3>Entities</h3>
<div class="entities">
${
this.entities.map((entityConf, index) => {
return html`
<ha-entity-picker
.hass="${this.hass}"
.value="${entityConf.entity}"
.index="${index}"
@change="${this._valueChanged}"
allow-custom-entity
></ha-entity-picker>
`;
})
}
${this.entities.map((entityConf, index) => {
return html`
<ha-entity-picker
.hass="${this.hass}"
.value="${entityConf.entity}"
.index="${index}"
@change="${this._valueChanged}"
allow-custom-entity
></ha-entity-picker>
`;
})}
<ha-entity-picker
.hass="${this.hass}"
@change="${this._addEntity}"