forked from ILLGrenoble/ngx-remote-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
49 lines (49 loc) · 1.34 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
48
49
{
"extends": "tslint:latest",
"rules": {
"arrow-parens": false,
"class-name": true,
"curly": false,
"eofline": true,
"forin": false,
"indent": [true, "spaces"],
"interface-name": false,
"jsdoc-format": true,
"member-access": false,
"no-bitwise": false,
"no-console": [true, "warn"],
"no-reference": false,
"no-string-literal": false,
"no-trailing-whitespace": false,
"no-var-requires": false,
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"ordered-imports": false,
"prefer-for-of": false,
"quotemark": [true, "single"],
"semicolon": [true, "always"],
"trailing-comma": false,
"triple-equals": [true, "allow-null-check"],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
"prefer-object-spread": false,
"prefer-conditional-expression": false,
"whitespace": [true,
"check-decl",
"check-operator",
"check-separator",
"check-type"
],
"no-implicit-dependencies": [true, "dev"],
"max-classes-per-file": false,
"no-angle-bracket-type-assertion": false,
"no-submodule-imports": false,
"no-unused-expression": [
false
],
"arrow-return-shorthand": [
false
]
},
"rulesDirectory": []
}