-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtslint.json
34 lines (34 loc) · 1.12 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
{
"defaultSeverity": "error",
"extends": [
"tslint:all"
],
"jsRules": {},
"rules": {
"arrow-parens": [true, "ban-single-arg-parens"],
"completed-docs": [true, {
"classes": { "properties": { "privacies": ["public", "protected"]}},
"enums": true,
"functions": true,
"tags": true,
"methods": true
}],
"interface-name": false,
"max-line-length": [true, 150],
"member-ordering": false,
"newline-before-return": false,
"no-any": false,
"no-default-export": false,
"no-inferrable-types": true,
"no-null-keyword": false,
"promise-function-async": false,
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"semicolon": [true, "never"],
"strict-boolean-expressions": [true, "allow-undefined-union", "allow-boolean-or-undefined"],
"trailing-comma": [true, {"multiline": "never", "singleline": "never", "esSpecCompliant": true }],
"triple-equals": [true, "allow-null-check"],
"type-literal-delimiter": false,
"typedef": false
},
"rulesDirectory": []
}