1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-05-02 14:42:52 +01:00

Update typescript, prettier, tslint -> eslint (#5536)

* Update typescript, prettier, tslint -> eslint

* Organize imports

* Use glob for eslint fix react import
This commit is contained in:
Bram Kragten
2020-04-14 18:05:45 +02:00
committed by GitHub
parent b17490f0de
commit 82f80db558
737 changed files with 9408 additions and 7414 deletions

View File

@@ -17,7 +17,7 @@ describe("featureClassNames", () => {
});
it("Matches no features", () => {
// tslint:disable-next-line
// eslint-disable-next-line
const stateObj = <HassEntity>{
attributes: {
supported_features: 64,
@@ -27,7 +27,7 @@ describe("featureClassNames", () => {
});
it("Matches one feature", () => {
// tslint:disable-next-line
// eslint-disable-next-line
const stateObj = <HassEntity>{
attributes: {
supported_features: 72,
@@ -40,7 +40,7 @@ describe("featureClassNames", () => {
});
it("Matches two features", () => {
// tslint:disable-next-line
// eslint-disable-next-line
const stateObj = <HassEntity>{
attributes: {
supported_features: 73,