forked from tetu-io/tetu-contracts-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
37 lines (37 loc) · 821 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
29
30
31
32
33
34
35
36
37
{
"extends": [
"tslint:latest"
],
"rules": {
"ban-ts-ignore": true,
"no-any": true,
"no-non-null-assertion": true,
"object-literal-sort-keys": false,
"promise-function-async": true,
"await-promise": false,
"no-submodule-imports": false,
"interface-name": [true, "always-prefix"],
"max-classes-per-file": [true, 1],
"no-empty": false,
"no-console": false,
"only-arrow-functions": false,
"variable-name": [
true,
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
],
"ordered-imports": [
false
],
"no-floating-promises": true,
"prefer-conditional-expression": false,
"no-implicit-dependencies": false,
"indent": [
true,
"spaces",
2
],
"whitespace" : [false]
}
}