forked from vega/vega-lite
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtslint.json
39 lines (39 loc) · 953 Bytes
/
tslint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"tslint.options": {
"project": "tsconfig.json",
"typeCheck": true
},
"extends": [
"tslint:recommended",
"tslint-config-prettier"
],
"rules": {
"interface-name": false,
"object-literal-sort-keys": false,
"no-namespace": false,
"array-type": [
true,
"array"
],
"member-ordering": false,
"object-literal-shorthand": false,
"no-bitwise": false,
"max-classes-per-file": false,
"quotemark": [true, "single", "avoid-escape"],
"no-reference": false,
"no-shadowed-variable": [true, {"temporalDeadZone": false}],
"no-string-literal": false,
"variable-name": [true, "check-format", "allow-leading-underscore", "ban-keywords"],
"no-inferrable-types": [true, "ignore-params"],
"no-console": [
true,
"debug",
"info",
"time",
"timeEnd",
"trace"
],
"no-unnecessary-initializer": false,
"no-var-requires": false
}
}