prettier: ran on all files again, sorry. now settings are defined in package.json

This commit is contained in:
Torkel Ödegaard
2017-12-21 08:39:31 +01:00
parent af34f9977e
commit 3a1f52d8a2
262 changed files with 3996 additions and 7431 deletions

View File

@@ -1,17 +1,17 @@
import { PrometheusDatasource } from "./datasource";
import { PrometheusQueryCtrl } from "./query_ctrl";
import { PrometheusDatasource } from './datasource';
import { PrometheusQueryCtrl } from './query_ctrl';
class PrometheusConfigCtrl {
static templateUrl = "partials/config.html";
static templateUrl = 'partials/config.html';
}
class PrometheusAnnotationsQueryCtrl {
static templateUrl = "partials/annotations.editor.html";
static templateUrl = 'partials/annotations.editor.html';
}
export {
PrometheusDatasource as Datasource,
PrometheusQueryCtrl as QueryCtrl,
PrometheusConfigCtrl as ConfigCtrl,
PrometheusAnnotationsQueryCtrl as AnnotationsQueryCtrl
PrometheusAnnotationsQueryCtrl as AnnotationsQueryCtrl,
};