-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
31 lines (31 loc) · 1.17 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
{
// Consider using no-identical-functions and disabling in faulty tests
// Consider using cognitive-complexity and refactor
// Consider using no-useless-cast but it's annoying
"extends": [
"tslint-no-circular-imports",
"./tslint.base.json"
],
"rules": {
// ==============================================================
// tslint-sonarts rules. See https://github.com/SonarSource/SonarTS
// These rules are part of the bug detection section of tslint-sonarts
"no-collection-size-mischeck": true,
"no-element-overwrite": true,
"no-ignored-initial-value": true,
"no-ignored-return": true,
"no-in-misuse": true,
"no-misleading-array-reverse": true,
"no-self-assignment": true,
"no-use-of-empty-return-value": true,
// These rules are part of the code smell detection section of tslint-sonarts
"no-dead-store": true,
"no-useless-intersection": true,
// ==============================================================
// ==============================================================
// base tslint rules
"no-implicit-dependencies": true,
"no-floating-promises": true,
"match-default-export-name": true
}
}