-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathtslint.json
28 lines (28 loc) · 928 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
{
"tslint.options": {
"project": "tsconfig.json",
"typeCheck": true
},
"extends": ["tslint:recommended", "tslint-react", "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,
"no-inferrable-types": [true, "ignore-params"],
"no-console": [true, "debug", "info", "time", "timeEnd", "trace"],
"no-unnecessary-initializer": false,
"no-var-requires": false,
"only-arrow-functions": false,
"one-variable-per-declaration": false,
"no-conditional-assignment": false
}
}