Update ignored files for eslint

This commit is contained in:
Veeck
2020-04-20 11:15:11 +02:00
parent b56a930f60
commit fb557b9130
5 changed files with 19 additions and 24 deletions

View File

@@ -16,8 +16,8 @@ WeatherProvider.register("darksky", {
providerName: "Dark Sky",
units: {
imperial: 'us',
metric: 'si'
imperial: "us",
metric: "si"
},
fetchCurrentWeather() {
@@ -33,7 +33,7 @@ WeatherProvider.register("darksky", {
}).catch(function(request) {
Log.error("Could not load data ... ", request);
})
.finally(() => this.updateAvailable())
.finally(() => this.updateAvailable());
},
fetchWeatherForecast() {
@@ -49,7 +49,7 @@ WeatherProvider.register("darksky", {
}).catch(function(request) {
Log.error("Could not load data ... ", request);
})
.finally(() => this.updateAvailable())
.finally(() => this.updateAvailable());
},
// Create a URL from the config and base URL.