forked from leam-tech/renovation-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
29 lines (29 loc) · 782 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
{
"extends": [
"tslint:recommended",
"tslint-config-prettier",
"tslint-plugin-prettier"
],
"rules": {
"prettier": true,
"only-arrow-functions": false,
"object-literal-sort-keys": false,
"trailing-comma": false,
"no-console": false,
"quotemark": [true, "double"],
"interface-name": false,
"indent": [true, "spaces", 2],
"switch-final-break": true,
"no-duplicate-switch-case": true,
"switch-default": true,
"no-unused-expression": false,
"object-literal-key-quotes": [true, "as-needed"],
"arrow-parens": false,
"max-line-length": [true, 140],
"promise-function-async": true,
"completed-docs": [true],
"variable-name": {
"options": ["allow-leading-underscore", "check-format"]
}
}
}