forked from sonm-io/Wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
30 lines (30 loc) · 1.14 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
{
"extends": ["tslint:latest", "tslint-react"],
"rules": {
"semicolon": false,
"indent": [true, "spaces", 4],
"quotemark": [true, "single", "jsx-double"],
"object-literal-sort-keys": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"no-submodule-imports": false,
"only-arrow-functions": [false],
"ordered-imports": false,
"no-var-requires": false,
"no-empty-interface": false,
"jsx-no-multiline-js": false,
"jsx-wrap-multiline": false,
"member-ordering": false,
"jsx-boolean-value": false,
"no-trailing-whitespace": true,
"space-within-parens": 0,
"max-classes-per-file": [false],
"curly": true,
"whitespace": [true, "check-branch", "check-decl", "check-operator", "check-module", "check-separator", "check-rest-spread", "check-type", "check-typecast", "check-type-operator", "check-preblock"],
"no-implicit-dependencies": false,
"ban-comma-operator": false,
"no-bitwise": false,
"array-type": false,
"prefer-for-of": false,
"forin": false
}
}