-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
37 lines (37 loc) · 1.02 KB
/
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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-react"
],
"jsRules": {},
"rules": {
"interface-name": false,
"no-var-requires": false,
"object-literal-sort-keys": false,
"no-console": [true, "log", "dir", "table"],
"jsx-no-multiline-js": false,
"quotemark": [true, "single", "jsx-double"],
"member-access": false,
"no-string-literal": false,
"jsx-boolean-value": false,
"arrow-parens": false,
"jsx-wrap-multiline": false,
"member-ordering": false,
"no-shadowed-variable": [
true,
{
"class": true,
"enum": true,
"function": true,
"interface": true,
"namespace": true,
"typeAlias": true,
"typeParameter": false,
"import": false,
"temporalDeadZone": true
}
]
},
"rulesDirectory": []
}