forked from Nexus-Mods/Vortex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
35 lines (35 loc) · 757 Bytes
/
Copy pathtslint.json
File metadata and controls
35 lines (35 loc) · 757 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
29
30
31
32
33
34
35
{
"extends": [
"tslint:latest",
"tslint-react"
],
"rules": {
"max-line-length": [
true,
100
],
"object-literal-sort-keys": false,
"quotemark": [
true,
"single",
"jsx-single",
"avoid-escape"
],
"jsx-no-lambda": true,
"jsx-alignment": true,
"jsx-no-multiline-js": false,
"jsx-boolean-value": false,
"max-classes-per-file": [
false, 5
],
"no-string-literal": false,
"no-empty-interface": false,
"object-literal-key-quotes": [true, "as-needed"],
"arrow-parens": false,
"no-duplicate-imports": false,
"no-implicit-dependencies": false,
"no-bitwise": false,
"no-submodule-imports": [true, "date-fns"]
},
"rulesDirectory": []
}