-
Notifications
You must be signed in to change notification settings - Fork 67
/
tslint.json
53 lines (53 loc) · 1.27 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"defaultSeverity": "warning",
"extends": ["tslint:recommended", "tslint-react"],
"linterOptions": {
"exclude": ["config/**/*.js", "node_modules/**/*.ts"]
},
"rules": {
"readonly-keyword": false,
"readonly-array": false,
"no-let": false,
"no-object-mutation": false,
"no-delete": true,
"no-method-signature": true,
"no-unused-variable": false,
"jsx-boolean-value": false,
"no-empty-interface": false,
"no-empty": false,
"align": false,
"import-name": false,
"no-floating-promises": true,
"await-promise": true,
"jsx-no-lambda": false,
"no-parameter-reassignment": true,
"function-name": false,
"variable-name": false,
"trailing-comma": false,
"quotemark": [true, "single"],
"object-literal-sort-keys": false,
"no-console": false,
"max-classes-per-file": false,
"ter-arrow-parens": false,
"prefer-array-literal": [
true,
{
"allow-type-parameters": true
}
],
"semicolon": [true, "never"],
"ordered-imports": false,
"no-use-before-declare": false,
"max-line-length": [
true,
{
"limit": 100,
"ignore-pattern": "^[\t\\s]*(.+)$"
}
],
"jsx-alignment": false
},
"jsRules": {
"no-console": false
}
}