forked from Levertion/mcfunction-langserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
30 lines (30 loc) · 1.03 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:all", "tslint-config-prettier"],
"rules": {
"interface-name": [true, "never-prefix"],
"no-floating-promises": true,
"typedef": {
"options": ["call-signature", "parameter", "property-declaration"]
},
"no-magic-numbers": false,
"completed-docs": false,
"only-arrow-functions": { "options": "allow-declarations" },
"no-any": false,
"newline-before-return": false,
"strict-boolean-expressions": false,
"no-object-literal-type-assertion": false,
"no-unsafe-any": false,
"restrict-plus-operands": false,
"no-void-expression": [true, "ignore-arrow-function-shorthand"],
"file-name-casing": [true, "kebab-case"],
"no-submodule-imports": false,
"helper-return": true,
"max-file-line-count": false,
"ban-ts-ignore": false,
"increment-decrement": false
},
"linterOptions": {
"exclude": ["lintrules/**"]
},
"rulesDirectory": "lintrules"
}