-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtslint.json
32 lines (32 loc) · 915 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
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"linterOptions": {
"exclude": [
"node_modules/**/*.ts"
]
},
"rules": {
"ordered-imports": false,
"object-literal-sort-keys": false,
"quotemark": [true, "double"],
"semicolon": [true, "always"],
"whitespace": [true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-rest-spread",
"check-type",
"check-typecast",
"check-type-operator",
"check-preblock"
],
"newline-before-return": true,
"no-consecutive-blank-lines": [true, 2],
"indent": [true, "spaces", 4],
"jsx-alignment": true,
"jsx-boolean-value": false,
"no-bitwise": false
}
}