-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
31 lines (31 loc) · 974 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
{
"rules": {
"adjacent-overload-signatures": true,
"no-import-side-effect": true,
"no-magic-numbers": [true, 0, 1, 2, 100],
"no-parameter-reassignment": true,
"unified-signatures": true,
"curly": true,
"semicolon": [true, "always"],
"quotemark": [true, "single", "avoid-escape"],
"no-shadowed-variable": true,
"no-unused-variable": [true, "check-parameters", {"ignore-pattern": "^_"}],
"no-unused-expression": true,
"prefer-object-spread": true,
"triple-equals": true,
"prefer-const": true,
"deprecation": true,
"invalid-void": true,
"max-file-line-count": [true, 256],
"max-line-length": [true, 120],
"no-inferrable-types": true,
"eofline": true,
"prefer-readonly": true,
"no-default-export": true,
"no-default-import": true,
"newline-before-return": true,
"indent": [true, "spaces", 2],
"no-trailing-whitespace": true,
"cyclomatic-complexity": [true, 16]
}
}