-
Notifications
You must be signed in to change notification settings - Fork 178
/
tslint.json
35 lines (35 loc) · 951 Bytes
/
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
{
"extends": ["tslint-config-standard", "tslint:latest", "tslint-react"],
"rules": {
"arrow-parens": [true, "ban-single-arg-parens"],
"ban": true,
"interface-name": [true, "never-prefix"],
"no-consecutive-blank-lines": [true, 3],
"no-default-export": true,
"no-unused-variable": [true, "react", {"ignore-pattern": "^_"}],
"object-literal-shorthand": false,
"object-literal-key-quotes": [
true, "consistent"
],
"object-literal-sort-keys": false,
"one-variable-per-declaration": [
false
],
"ordered-imports": [
true, "lowercase-last"
],
"quotemark": [true, "avoid-escape", "single"],
"semicolon": [
"always"
],
"switch-default": false,
"trailing-comma": [false],
"variable-name": [true,
"ban-keywords",
"check-format",
"allow-pascal-case",
"allow-leading-underscore"
],
"jsx-no-multiline-js": false
}
}