-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
35 lines (35 loc) · 870 Bytes
/
index.js
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
module.exports = {
"extends": "tslint:recommended",
"rules": {
"arrow-parens": false,
"import-spacing": false,
"interface-name": false,
"max-classes-per-file": false,
"member-access": false,
"member-ordering": false,
"no-shadowed-variable": false,
"no-string-literal": false,
"no-unused-variable": {
"options": true,
"severity": "warning"
},
"no-var-requires": false,
"one-line": {
"severity": "warning"
},
"only-arrow-functions": {
"options": [true, "allow-named-functions"],
"severity": "warning"
},
"ordered-imports": false,
"object-literal-key-quotes": false,
"object-literal-sort-keys": false,
"trailing-comma": false,
"variable-name": [
true,
"check-format",
"allow-leading-underscore",
"allow-trailing-underscore"
]
}
}