forked from DaJaffaMan/HSReplay.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
50 lines (50 loc) · 946 Bytes
/
tslint.json
File metadata and controls
50 lines (50 loc) · 946 Bytes
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
{
"extends": [
"tslint:recommended",
"tslint-react",
"tslint-config-prettier"
],
"rules": {
"array-type": false,
"interface-name": [
true,
"never-prefix"
],
"jsx-boolean-value": [true, "never"],
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"jsx-wrap-multiline": false,
"member-access": false,
"member-ordering": false,
"no-console": false,
"no-empty-interface": false,
"no-require-imports": true,
"no-string-literal": false,
"no-unused-expression": [
true,
"allow-fast-null-checks"
],
"no-unused-variable": [
true,
{
"ignore-pattern": "^_$"
}
],
"ordered-imports": [
true,
{
"import-sources-order": "any",
"named-imports-order": "case-insensitive"
}
],
"object-literal-sort-keys": false,
"switch-default": false,
"variable-name": [
true,
"check-format",
"allow-leading-underscore",
"allow-pascal-case",
"ban-keywords"
]
}
}