forked from cdmbase/react-frontend-server-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
44 lines (44 loc) · 816 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
36
37
38
39
40
41
42
43
44
{
"extends": [
"tslint:latest",
"tslint-react"
],
"rules": {
"indent": [
true,
"spaces"
],
"quotemark": [
true,
"single",
"jsx-double"
],
"no-namespace": false,
"no-var-requires": false,
"ordered-imports": [false],
"no-unused-variable": [
true,
"react"
],
// "trailing-comma": [
// true, {
// "multiline": "never",
// "singleline": "never"
// }
// ],
"member-ordering": [
false
],
"arrow-parens": [true, "ban-single-arg-parens"],
"interface-name": [true, "never-prefix"],
"object-literal-sort-keys": false,
"no-shadowed-variable": false,
"no-console": [
false
],
"jsx-alignment": [
false
],
"jsx-no-multiline-js": false
}
}