-
Notifications
You must be signed in to change notification settings - Fork 49
/
tslint.json
62 lines (61 loc) · 1.71 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
{
"extends": ["tslint:latest", "tslint-react", "tslint-config-prettier"],
"rules": {
"ban": false,
"class-name": true,
"comment-format": [true, "check-space"],
"curly": [true, "ignore-same-line"],
"forin": true,
"interface-name": false,
"jsdoc-format": true,
"jsx-no-lambda": false,
"label-position": true,
"member-access": false,
"member-ordering": [
true,
"public-before-private",
"static-before-instance",
"variables-before-functions"
],
"no-any": false,
"no-arg": true,
"no-bitwise": true,
"no-console": false,
"no-construct": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-implicit-dependencies": false,
"no-shadowed-variable": false,
"no-string-literal": true,
"no-submodule-imports": false,
"no-switch-case-fall-through": true,
"no-this-assignment": false,
"no-trailing-whitespace": false,
"no-unused-expression": true,
"no-unused-variable": false,
"no-use-before-declare": true,
"no-var-requires": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"radix": true,
"switch-default": true,
"triple-equals": [true, "allow-null-check"],
"typedef": [true, "parameter", "property-declaration"],
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
]
},
"linterOptions": {
"exclude": [
"config/**/*.js",
"node_modules/**/*.ts",
"coverage/lcov-report/*.js"
]
}
}