-
Notifications
You must be signed in to change notification settings - Fork 3
/
tslint.json
43 lines (43 loc) · 1.31 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
{
"defaultSeverity": "error",
"extends": ["tslint:latest", "tslint-react", "tslint-config-airbnb", "tslint-config-prettier"],
"rules": {
"quotemark": [true, "single", "jsx-double"],
"semicolon": [true, "never"],
"interface-name": [true, "never-prefix"],
"variable-name": [true, "ban-keywords"],
"ordered-imports": [true, { "import-sources-order": "any", "named-imports-order": "any" }],
"curly": [true, "ignore-same-line"],
"jsx-no-multiline-js": false,
"jsx-boolean-value": false,
"max-line-length": false,
"no-var-requires": false,
"no-empty": false,
"no-shadowed-variable": false,
"member-access": false,
"no-bitwise": false,
"no-console": false,
"object-literal-sort-keys": false,
"import-name": false,
"function-name": false,
"align": false,
"no-submodule-imports": false,
"trailing-comma": false,
"no-param-reassign": false,
"strict-boolean-expressions": false,
"no-boolean-literal-compare": false,
"jsx-no-lambda": false,
"no-implicit-dependencies": false,
"space-in-parens": false,
"no-return-await": false,
"no-else-after-return": false,
"no-increment-decrement": false,
"object-shorthand-properties-first": false
},
"linterOptions": {
"exclude": [
"**/*.js",
"**/*.jsx"
]
}
}