-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
32 lines (32 loc) · 1.07 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
{
"extends": ["tslint:recommended"],
"rules": {
"object-literal-sort-keys": false,
"member-ordering": [true, {"order": "fields-first"}],
"prefer-conditional-expression": false,
"interface-name": false,
"unified-signatures": false,
"function-constructor": false,
"ban-types": false,
"no-bitwise": false,
"max-classes-per-file": false,
"interface-over-type-literal": false,
"only-arrow-functions": false,
"no-empty": false,
"variable-name": {
"options": ["allow-leading-underscore", "allow-pascal-case"]
},
"callable-types": false,
"array-type": [false, "array-simple"],
"no-shadowed-variable": [true, {"class": false}],
"new-parens": false,
"no-empty-interface": false,
"no-sparse-arrays": true,
"max-line-length": {
"options": {
"ignore-pattern": "^import |^export {(.*?)}|class [a-zA-Z]+ implements |// |[a-z]<[A-Z]",
"limit": 140
}
}
}
}