forked from wongnai/kube-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
30 lines (30 loc) · 845 Bytes
/
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
{
"extends": ["tslint:recommended", "tslint-config-prettier"],
"linterOptions": {
"exclude": [
"**/*.js",
"node_modules/**/*.ts"
]
},
"rules": {
"prefer-const": false,
"no-console": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"interface-name": false,
"no-var-requires": false,
"jsx-no-lambda": false,
"member-access": false,
"only-arrow-function": false,
"no-unnecessary-type-assertion": true,
"function-constructor": true,
"no-empty": [true, "allow-empty-catch", "allow-empty-functions"],
"no-implicit-dependencies": [true, "dev"],
"no-return-await": true,
"no-sparse-arrays": true,
"no-angle-bracket-type-assertion": false,
"no-redundant-jsdoc": true,
"prefer-method-signature": true,
"no-misused-new": false
}
}