-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtslint.json
More file actions
28 lines (28 loc) · 758 Bytes
/
Copy pathtslint.json
File metadata and controls
28 lines (28 loc) · 758 Bytes
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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-config-airbnb",
"tslint-react"
],
"jsRules": {
"import-name": false
},
"rules": {
"semicolon": false,
"no-boolean-literal-compare": [true],
"import-name": [false],
"object-literal-sort-keys": false,
"no-shadowed-variable": false,
"member-ordering": false,
"member-access": false,
"prefer-array-literal": false,
"ordered-imports": [true],
"no-angle-bracket-type-assertion": false,
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"ter-arrow-parens": false,
"variable-name": false
},
"rulesDirectory": []
}