mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
set member-access and no-var-keyword to true, removed public in two files (#13104)
This commit is contained in:
parent
eef41cbccd
commit
944c1da27b
@ -14,7 +14,7 @@ class Query {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class ManageDashboardsCtrl {
|
export class ManageDashboardsCtrl {
|
||||||
public sections: any[];
|
sections: any[];
|
||||||
|
|
||||||
query: Query;
|
query: Query;
|
||||||
navModel: any;
|
navModel: any;
|
||||||
|
@ -10,7 +10,7 @@ class PlaylistSrv {
|
|||||||
private index: number;
|
private index: number;
|
||||||
private interval: any;
|
private interval: any;
|
||||||
private startUrl: string;
|
private startUrl: string;
|
||||||
public isPlaying: boolean;
|
isPlaying: boolean;
|
||||||
|
|
||||||
/** @ngInject */
|
/** @ngInject */
|
||||||
constructor(private $location: any, private $timeout: any, private backendSrv: any) {}
|
constructor(private $location: any, private $timeout: any, private backendSrv: any) {}
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
"indent": [true, "spaces", 2],
|
"indent": [true, "spaces", 2],
|
||||||
"label-position": true,
|
"label-position": true,
|
||||||
"max-line-length": [true, 150],
|
"max-line-length": [true, 150],
|
||||||
"member-access": false,
|
"member-access": [true, "no-public"],
|
||||||
"no-arg": true,
|
"no-arg": true,
|
||||||
"no-bitwise": false,
|
"no-bitwise": false,
|
||||||
"no-console": [true, "debug", "info", "time", "timeEnd", "trace"],
|
"no-console": [true, "debug", "info", "time", "timeEnd", "trace"],
|
||||||
@ -40,7 +40,7 @@
|
|||||||
"no-string-literal": false,
|
"no-string-literal": false,
|
||||||
"no-switch-case-fall-through": false,
|
"no-switch-case-fall-through": false,
|
||||||
"no-trailing-whitespace": true,
|
"no-trailing-whitespace": true,
|
||||||
"no-var-keyword": false,
|
"no-var-keyword": true,
|
||||||
"object-literal-sort-keys": false,
|
"object-literal-sort-keys": false,
|
||||||
"one-line": [true, "check-open-brace", "check-catch", "check-else"],
|
"one-line": [true, "check-open-brace", "check-catch", "check-else"],
|
||||||
"prefer-const": true,
|
"prefer-const": true,
|
||||||
|
Loading…
Reference in New Issue
Block a user