-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtslint.json
executable file
·30 lines (30 loc) · 915 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
{
"extends": ["tslint:latest", "tslint-react"],
"rules": {
"semicolon": [true, "always", "ignore-bound-class-methods"],
"interface-name": false,
"object-literal-shorthand": [true, "never"],
"indent": [true, "spaces"],
"quotemark": [true, "single", "jsx-double"],
"no-var-requires": false,
"ordered-imports": false,
"no-unused-variable": [false, "react"],
"member-ordering": [false],
"object-literal-sort-keys": false,
"no-shadowed-variable": false,
"no-console": [false],
// "max-line-length": [true, 80],
"no-consecutive-blank-lines": [false],
"no-string-literal": false,
"jsx-no-multiline-js": false,
"jsx-boolean-value": false,
"arrow-parens": [false],
"no-implicit-dependencies": false,
"no-submodule-imports": false,
"no-empty": false,
"jsx-alignment": false
},
"linterOptions": {
"exclude": ["**/*.js"]
}
}