-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
53 lines (53 loc) · 1.02 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
45
46
47
48
49
50
51
52
53
{
"defaultSeverity": "warn",
"extends": [
"tslint-config-airbnb",
"tslint-react"
],
"jsRules": {},
"rules": {
"ter-indent": false,
"indent": false,
"semicolon": [
true,
"always",
"ignore-bound-class-methods"
],
"trailing-comma": false,
"import-name": false,
"eofline": false,
"max-line-length": [
true,
110
],
"object-literal-key-quotes": false,
"object-literal-shorthand": false,
"variable-name": [
true,
"allow-pascal-case",
"allow-snake-case",
"allow-leading-underscore"
],
"jsx-no-multiline-js": false,
"jsx-boolean-value": [
true,
"never"
],
"jsx-wrap-multiline": false,
"function-name": [
true,
{
"function-regex": "^[\\w\\d]+$",
"static-method-regex": "^[a-zA-Z_\\d]+$"
}
],
"ter-arrow-parens": [
true,
"always"
],
"jsx-no-lambda": false,
"no-this-assignment": false,
"align": false
},
"rulesDirectory": []
}