-
Notifications
You must be signed in to change notification settings - Fork 3
/
tslint.json
40 lines (39 loc) · 1.17 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
{
"extends": ["tslint:latest", "tslint-react", "tslint-react-hooks"],
"rules": {
"no-empty-interface": false,
"jsx-no-lambda": false,
"semicolon": [false, "always", "ignore-bound-class-methods"],
"interface-name": false,
"object-literal-shorthand": [false, "never"],
"indent": [true, "spaces"],
"quotemark": [true, "single", "jsx-double"],
"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-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,
"jsx-wrap-multiline": false
},
"linterOptions": {
"exclude": ["**/*.js"],
"include": ["**/*.ts", "**/*.tsx"]
},
"ordered-imports": [
true,
{
"module-source-path": "basename"
}
]
}