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,4 +1,4 @@
import _ from "lodash";
import _ from 'lodash';
export default class ResponseParser {
parse(query, results) {
@ -11,7 +11,7 @@ export default class ResponseParser {
return [];
}
var influxdb11format = query.toLowerCase().indexOf("show tag values") >= 0;
var influxdb11format = query.toLowerCase().indexOf('show tag values') >= 0;
var res = {};
_.each(influxResults.series, serie => {