-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
54 lines (54 loc) · 1.52 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
{
"extends": [
"tslint:all",
"tslint-react",
"tslint-immutable",
"tslint-config-prettier"
],
"rules": {
"strict-boolean-expressions": true,
"comment-format": false,
"completed-docs": false,
"file-name-casing": false,
"interface-name": false,
"match-default-export-name": false,
"member-ordering": false,
"newline-before-return": false,
"no-array-mutation": [
true,
"ignore-new-array",
{ "ignore-prefix": ["mut", "this.mut"] }
],
"no-default-export": false,
"no-default-import": false,
"no-delete": true,
"no-implicit-dependencies": false,
"no-inferrable-types": false,
"no-let": [true, { "ignore-prefix": "mut" }],
"no-loop-statement": true,
"no-magic-numbers": false,
"no-method-signature": true,
"no-object-mutation": [true, { "ignore-prefix": ["mut", "this.mut"] }],
"no-submodule-imports": false,
"no-unused-variable": false,
"no-use-before-declare": false,
"no-var-keyword": true,
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"ordered-imports": false,
"prefer-method-signature": false,
"prefer-switch": false,
"promise-function-async": false,
"readonly-array": [true, { "ignore-prefix": "mut" }],
"readonly-keyword": [true, { "ignore-prefix": "mut" }],
"typedef": [
true,
"call-signature",
"member-variable-declaration",
"parameter",
"property-declaration"
],
"unnecessary-else": false,
"variable-name": false
}
}