forked from swift502/Sketchbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
42 lines (42 loc) · 1.09 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
38
39
40
41
42
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"one-line": false,
"no-empty": false,
"no-console": false,
"indent": [true, "tabs"],
"object-literal-shorthand": false,
"quotemark": [true, "single"],
"prefer-const": false,
"eofline": false,
"max-line-length": false,
"no-trailing-whitespace": false,
"ordered-imports": false,
"import-spacing": false,
"trailing-comma": false,
"curly": false,
"object-literal-sort-keys": false,
"object-literal-key-quotes": false,
"variable-name": false,
"typedef": [
true,
"call-signature",
"parameter",
"property-declaration",
"variable-declaration-ignore-function",
"member-variable-declaration",
"object-destructuring",
"array-destructuring"
]
},
"linterOptions": {
"exclude": [
"build"
]
},
"rulesDirectory": []
}