forked from vlaja/multilanguage-routing-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
48 lines (48 loc) · 1.34 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
{
"extends": ["tslint:recommended", "tslint-react"],
"linterOptions": {
"exclude": ["config/**/*.js", "node_modules/**/*.ts"]
},
"rules": {
"interface-name": [true, "never-prefix"],
"eofline": false,
"member-access": false,
"object-literal-sort-keys": false,
"semicolon": [true, "always", "ignore-bound-class-methods"],
"trailing-comma": false,
"quotemark": [true, "single", "avoid-escape", "jsx-double"],
"no-var-requires": false,
"no-trailing-whitespace": false,
"object-literal-key-quotes": false,
"jsx-no-lambda": true,
"jsx-boolean-value": false,
"jsx-no-multiline-js": false,
"jsx-wrap-multiline": false,
"one-variable-per-declaration": false,
"ordered-imports": [
true,
{
"module-source-path": "full",
"import-sources-order": "any",
"named-imports-order": "any",
"grouped-imports": "true"
}
],
"arrow-parens": false,
"no-console": false,
"radix": false,
"max-line-length": false,
"switch-default": true,
"typedef": [true, "parameter", "property-declaration"],
"typedef-whitespace": [
true,
{
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
}
],
"jsx-alignment": false
}
}