forked from AlgusDark/bloomer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
28 lines (28 loc) · 872 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"array-type": [true, "array"],
"ban-types": [true, ["Object", "Use {} instead."]],
"curly": [true, "ignore-same-line"],
"interface-name": [true, "never-prefix"],
"max-line-length": [true, 135],
"member-access": false,
"no-namespace": [true, "allow-declarations"],
"no-shadowed-variable": false,
"no-var-requires": false,
"ordered-imports": [
true,
{
"import-sources-order": "case-insensitive",
"named-imports-order": "case-insensitive"
}
],
"trailing-comma": [true, {"multiline": "always", "singleline": "never"}],
"quotemark": [true, "single", "jsx-double"]
},
"rulesDirectory": []
}