forked from kiworkshop/community-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
47 lines (47 loc) · 1.08 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
{
"extends": [
"tslint:recommended",
"tslint-react",
"tslint-config-prettier",
"tslint-sonarts",
"tslint-react-hooks"
],
"linterOptions": {
"exclude": [
"node_modules/**/*.ts",
"coverage/lcov-report/*.js"
]
},
"rules": {
"jsx-no-multiline-js": false,
"jsx-boolean-value": false,
"object-literal-sort-keys": false,
"no-bitwise": false,
"max-union-size": false,
"no-duplicate-string": false,
"no-redundant-boolean": false,
"no-duplicated-branches": false,
"no-big-function": false,
"no-identical-functions": false,
"no-var-requires": false,
"no-var-keyword": true,
"arrow-return-shorthand": true,
"no-boolean-literal-compare": true,
"switch-final-break": true,
"prefer-method-signature": true,
"ordered-imports": true,
"interface-name": [
true,
"never-prefix"
],
"variable-name": {
"options": [
"require-const-for-all-caps",
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
]
}
}
}