-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
44 lines (42 loc) · 1.4 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
43
44
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"comment-format": false,
"whitespace": true,
"semicolon": false,
"no-console": {
"severity": "off",
"options": ["debug", "info", "log"]
},
"one-line": [true, "check-catch", "check-finally", "check-else"],
"max-line-length": [true, {"limit": 120, "check-strings": true}],
"quotemark": [true, "single", "avoid-escape", "avoid-template", "jsx-single"],
"typedef-whitespace": true,
"variable-name": [true, "check-format", "allow-leading-underscore", "allow-pascal-case"],
"align": true,
"curly": true,
"interface-name": [true, "always-prefix"],
"member-ordering": [true, {"order": "statics-first"}],
"trailing-comma": [true, {"multiline": {
"arrays": "always",
"exports": "ignore",
"functions": "never",
"imports": "ignore",
"objects": "always",
"typeLiterals": "ignore"
}, "singleline": "never"}],
"arrow-parens": [true, "ban-single-arg-parens"],
"no-consecutive-blank-lines": true,
"object-literal-key-quotes": [ true, "as-needed" ],
"object-literal-sort-keys": true,
"member-access": true,
"interface-over-type-literal": true,
"no-unused-expression": true,
"array-type": [true, "array-simple"]
},
"rulesDirectory": []
}