forked from dmitrymorozoff/react-dashed-progress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
73 lines (73 loc) · 2.18 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"linterOptions": {
"exclude": [
"node_modules/**",
"**/*.spec.ts",
"**/*.spec.tsx",
"**/*.test.ts",
"**/*.test.tsx"
]
},
"rules": {
"triple-equals": true,
"no-var-requires": false,
"space-before-function-paren": [
true,
{
"anonymous": "never",
"named": "never",
"asyncArrow": "always",
"method": "never",
"constructor": "never"
}
],
"object-literal-sort-keys": false,
"no-debugger": false,
"member-ordering": [
true,
{
"order": [
"public-static-field",
"protected-static-field",
"private-static-field",
"public-instance-field",
"protected-instance-field",
"private-instance-field",
"public-constructor",
"protected-constructor",
"private-constructor",
"public-static-method",
"protected-static-method",
"private-static-method",
"public-instance-method",
"protected-instance-method",
"private-instance-method"
]
}
],
"align": [true, "statements"],
"jsx-no-multiline-js": false,
"no-default-export": true
},
"jsRules": {
"triple-equals": true,
"no-var-requires": false,
"space-before-function-paren": [
true,
{
"anonymous": "never",
"named": "never",
"asyncArrow": "always",
"method": "never",
"constructor": "never"
}
],
"object-literal-sort-keys": false,
"no-debugger": false,
"no-console": [false],
"eofline": false,
"jsx-no-multiline-js": false,
"no-default-export": true
}
}