-
Notifications
You must be signed in to change notification settings - Fork 12
/
tslint.json
33 lines (33 loc) · 1000 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
{
"extends": ["tslint:latest", "tslint-react"],
"rules": {
"semicolon": [true, "never"],
"indent": [true, "spaces"],
"quotemark": [true, "single", "jsx-double"],
"trailing-comma": [true, { "multiline": "never", "singleline": "never" }],
"space-before-function-paren": [true, "always"],
"no-submodule-imports": false,
"only-arrow-functions": false,
"prefer-for-of": false,
"no-var-requires": false,
"ordered-imports": false,
"no-unused-variable": [false],
"member-ordering": [false],
"object-literal-sort-keys": false,
"no-shadowed-variable": false,
"no-console": [false],
"no-bitwise": false,
"max-line-length": [
true,
{ "limit": 180, "ignore-pattern": "'[^']{180,}'" }
],
"no-consecutive-blank-lines": [false],
"no-string-literal": false,
"jsx-no-multiline-js": false,
"jsx-boolean-value": false,
"no-implicit-dependencies": false
},
"linterOptions": {
"exclude": ["**/*.js"]
}
}