-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
30 lines (30 loc) · 799 Bytes
/
tslint.json
File metadata and controls
30 lines (30 loc) · 799 Bytes
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
{
"extends": ["tslint:latest", "tslint-react"],
"jsRules": true,
"rules": {
"trailing-comma": false,
"quotemark": [true, "single", "jsx-single", "avoid-escape", "avoid-template"],
"no-unused-expression": [true, "allow-fast-null-checks"],
"no-implicit-dependencies": false,
"no-submodule-imports": false,
"interface-name": [true, "never-prefix"],
"interface-over-type-literal": false,
"object-literal-sort-keys": false,
"max-line-length": false,
"jsx-wrap-multiline": true,
"variable-name": [true,
"allow-leading-underscore"
],
"semicolon": [true,
"always",
"ignore-interfaces",
"ignore-bound-class-methods"
],
"jsx-boolean-value": "never"
},
"linterOptions": {
"exclude": [
"*.js"
]
}
}