-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
37 lines (37 loc) · 1.03 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
35
36
37
{
"defaultSeverity": "warning",
"extends": [
"tslint:recommended"
],
"linterOptions": {
"exclude": [
"node_modules/**"
]
},
"rules": {
"arrow-parens": false,
"array-type": false,
"object-literal-shorthand": false,
"comment-format": [true, "check-space"],
"completed-docs": [true, "classes", "functions", "enums", "interfaces", "namespaces"],
"member-access": false,
"member-ordering": false,
"no-angle-bracket-type-assertion": false,
"no-console": false,
"no-shadowed-variable": false,
"no-string-literal": false,
"no-unused-expression": [true, "allow-fast-null-checks"],
"object-literal-sort-keys": false,
"object-literal-key-quotes": false,
"only-arrow-functions": false,
"ordered-imports": false,
"radix": false,
"quotemark": [true, "single"],
"semicolon": [true, "never"],
"space-before-function-paren": true,
"whitespace": [true, "check-module"],
"trailing-comma": false,
"varlswiable-name": false,
"no-reference": false
}
}