forked from culturecreates/ontodia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
47 lines (47 loc) · 1.54 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"extends": "tslint:recommended",
"defaultSeverity": "warning",
"rules": {
"array-type": [false],
"arrow-parens": [false, "ban-single-arg-parens"],
"interface-name": [false],
"max-classes-per-file": [false, 1],
"member-access": [false],
"member-ordering": [true, "fields-first"],
"no-default-export": true,
"no-namespace": false,
"no-var-requires": false,
"object-literal-key-quotes": [false],
"object-literal-sort-keys": false,
"object-literal-shorthand": false,
"one-variable-per-declaration": [false],
"only-arrow-functions": [false],
"ordered-imports": [false],
"prefer-for-of": false,
"space-before-function-paren": [true, {
"anonymous": "always",
"named": "never",
"asyncArrow": "always",
"method": "never",
"constructor": "never"
}],
"switch-default": false,
"trailing-comma": false,
"type-literal-delimiter": true,
"quotemark": [true, "single"],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-rest-spread",
"check-type",
"check-typecast",
"check-type-operator",
"check-preblock"
]
}
}