forked from zxch3n/PomodoroLogger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
32 lines (32 loc) · 815 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
{
"defaultSeverity": "error",
"extends": [
"tslint-config-airbnb",
"tslint-react",
"tslint-config-prettier"
],
"jsRules": {},
"rules": {
"max-line-length": [true, 120],
"trailing-comma": false,
"ter-indent": [
true,
4,
{
"SwitchCase": 1
}
],
"no-parameter-reassignment": false,
"variable-name": false,
"jsx-alignment": true,
"jsx-equals-spacing": [true, "never"],
"jsx-no-string-ref": true,
"jsx-self-close": true,
"jsx-no-lambda": false,
"import-name": false,
"prefer-template": false,
"no-parameter-properties": false,
"no-increment-decrement": false
},
"rulesDirectory": []
}