-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
39 lines (39 loc) · 1.39 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
{
"extends": "tslint:recommended",
"rules": {
"semicolon": [true, "always"],
"indent": [true, "spaces"],
"eofline": true,
"max-line-length": [false],
"linebreak-style": [true, "LF"],
"quotemark": [true, "single", "avoid-escape"],
"array-type": [true, "array"],
"arrow-parens": [true, "ban-single-arg-parens"],
"comment-format": [false],
"interface-over-type-literal": true,
"prefer-for-of": false,
"ordered-imports": false,
"no-consecutive-blank-lines": [true],
"object-literal-shorthand": true,
"one-variable-per-declaration": [true, "ignore-for-loop"],
"prefer-method-signature": true,
"space-before-function-paren": [true, {"anonymous": "always", "named": "never", "asyncArrow": "always"}],
"switch-default": false,
"interface-name": [true, "never-prefix"],
"no-var-requires": false,
"no-namespace": [false],
"member-access": [false],
"max-classes-per-file": [false],
"object-literal-sort-keys": false,
"no-shadowed-variable": false,
"member-ordering": [false],
"trailing-comma": [true, {"singleline": "never", "multiline": "never"}],
"typedef": [true, "call-signature", "property-declaration"],
"variable-name": [true, "allow-leading-underscore"],
"no-console": [false],
"no-bitwise": false,
"no-empty": false,
"unified-signatures": true,
"no-unused-expression": false
}
}