prettier: change to single quoting

This commit is contained in:
Torkel Ödegaard
2017-12-20 12:33:33 +01:00
parent 2a360c45a2
commit 85879a7014
304 changed files with 10558 additions and 10519 deletions

View File

@@ -1,10 +1,10 @@
///<reference path="../../../headers/common.d.ts" />
import { MysqlDatasource } from "./datasource";
import { MysqlQueryCtrl } from "./query_ctrl";
import { MysqlDatasource } from './datasource';
import { MysqlQueryCtrl } from './query_ctrl';
class MysqlConfigCtrl {
static templateUrl = "partials/config.html";
static templateUrl = 'partials/config.html';
}
const defaultQuery = `SELECT
@@ -18,7 +18,7 @@ const defaultQuery = `SELECT
`;
class MysqlAnnotationsQueryCtrl {
static templateUrl = "partials/annotations.editor.html";
static templateUrl = 'partials/annotations.editor.html';
annotation: any;
@@ -33,5 +33,5 @@ export {
MysqlDatasource as Datasource,
MysqlQueryCtrl as QueryCtrl,
MysqlConfigCtrl as ConfigCtrl,
MysqlAnnotationsQueryCtrl as AnnotationsQueryCtrl
MysqlAnnotationsQueryCtrl as AnnotationsQueryCtrl,
};