-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
86 lines (86 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"extends": [
"tslint-microsoft-contrib"
, "tslint-eslint-rules"
],
"rules": {
"completed-docs": false,
"trailing-comma": [
true,
{
"multiline": "always",
"singleline": "ignore"
}
],
"switch-default": true,
"encoding": true,
"missing-jsdoc": false,
"no-require-imports": false,
"no-relative-imports": false,
"no-implicit-dependencies": false,
"no-var-requires": false,
"no-submodule-imports": false,
"typedef": false,
"no-single-line-block-comment": false,
"no-any": false,
"no-console": false,
"no-multiline-string": false,
"no-http-string": false,
"no-parameter-properties": false,
"export-name": false,
"import-name": false,
"prefer-type-cast": false,
"no-angle-bracket-type-assertion": true,
"no-non-null-assertion": false,
"react-this.binding-issue": false,
"linebreak-style": false,
"member-access": false,
"quotemark": [true, "single"],
"variable-name": false,
"react-a11y-event-has-role": false,
"react-a11y-img-has-alt": false,
"function-name": false,
"react-this-binding-issue": false,
"no-import-side-effect": false,
"no-unused-expression": false,
"no-default-export": false,
"curly": [true, "ignore-same-line"],
"no-unsafe-any": false,
"array-bracket-spacing": false,
"strict-boolean-expressions": false,
"no-string-based-set-timeout": false,
"match-default-export-name": false,
"promise-function-async": false,
"no-use-before-declare": false,
"no-void-expression": false,
"no-suspicious-comment": false,
"no-object-literal-type-assertion": false,
"no-floating-promises": true,
"ter-indent": [
true,
2,
{
"SwitchCase": 1,
"VariableDeclarator": 1,
"outerIIFEBody": 1,
"MemberExpression": 1,
"FunctionDeclaration": {
"parameters": 1,
"body": 1
},
"FunctionExpression": {
"parameters": 1,
"body": 1
},
"CallExpression": {
"arguments": 1
},
"ArrayExpression": 1,
"ObjectExpression": 1,
"ImportDeclaration": 1,
"flatTernaryExpressions": false,
"ignoreComments": false
}
]
}
}