-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
33 lines (33 loc) · 905 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended", "tslint-react"
],
"linterOptions": {
"exclude": [
"node_modules/**"
]
},
"jsRules": {},
"rules": {
"semicolon": [true, "always"],
"member-access": [true, "no-public"],
"jsx-alignment": false,
"jsx-no-multiline-js": false,
"max-line-length": false,
"object-literal-sort-keys": false,
"no-namespace": false,
"interface-name": false,
"no-empty-interface": false,
"no-console": false,
"jsx-no-string-ref": false,
"prefer-for-of": false,
"ordered-imports": false,
"jsx-no-bind": false,
"max-classes-per-file": false,
"no-trailing-whitespace": true,
"no-unused-variable": true,
"no-string-literal": false
},
"rulesDirectory": []
}