-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtslint.json
executable file
·36 lines (35 loc) · 996 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
31
32
33
34
35
36
{
"defaultSeverity": "error",
"extends": [
"tslint-microsoft-contrib",
"tslint-config-prettier"
],
"jsRules": {},
"rules": {
"prettier": [true, {
"quotes": true,
"semi": false
}],
"mocha-no-side-effect-code": false,
"missing-jsdoc": false,
"export-name": false,
"no-any": false,
"no-unsafe-any": false,
"cyclomatic-complexity": false,
"match-default-export-name": false,
"no-shadowed-variable": false,
"no-increment-decrement": false,
"max-func-body-length": false,
"strict-boolean-expressions": false,
"typedef": [false, "call-signature", "arrow-call-signature", "parameter", "member-variable-declaration"],
"no-default-export": false,
"no-relative-imports": false,
"no-implicit-dependencies": [true, "dev"]
},
"rulesDirectory": ["tslint-plugin-prettier"],
"typedef": [
true,
"parameter",
"arrow-parameter"
]
}