-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtslint.json
63 lines (59 loc) · 1.74 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
{
"extends": [
"tslint:all",
"tslint-react"
],
"linterOptions": {
"exclude": ["__tests_/**/*.test.tsx", "__tests__/**/*.test.ts"]
},
"rules": {
"curly": [true, "next-line-single-line"],
"comment-format": false,
"interface-name": false,
"member-access": [true, "no-public"],
"member-ordering": [
true,
{
"order": [
"public-static-field",
"protected-static-field",
"private-static-field",
"protected-instance-field",
"public-instance-field",
"private-instance-field",
"public-constructor",
"protected-constructor",
"private-constructor",
"public-static-method",
"protected-static-method",
"private-static-method",
"public-instance-method",
"protected-instance-method",
"private-instance-method"
]
}
],
"typedef": [true, "call-signature", "parameter"],
"no-default-export": true,
"no-implicit-dependencies": [true],
"no-submodule-imports": false,
"no-inferred-empty-object-type": false,
"no-trailing-whitespace": [true, "ignore-jsdoc"],
"no-unsafe-any": false,
"object-literal-sort-keys": false,
"one-variable-per-declaration": [true, "ignore-for-loop"],
"only-arrow-functions": [true, "allow-named-functions"],
"ordered-imports": [
true,
{
"grouped-imports": true,
"named-imports-order": "lowercase-last"
}
],
"promise-function-async": false,
"strict-boolean-expressions": false,
"file-name-casing": [false, "camel-case"],
"quotemark": [true, "single", "jsx-double"],
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case"]
}
}