-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
executable file
·36 lines (36 loc) · 1022 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
{
"extends": ["tslint:latest", "tslint-plugin-prettier", "tslint-config-prettier"],
"defaultSeverity": "warning",
"rules": {
"object-literal-sort-keys": false,
"no-object-literal-type-assertion": false,
"ban": false,
"ban-types": false,
"ordered-imports": false,
"no-submodule-imports": false,
"no-any": false,
"member-access": false,
"no-arg": true,
"interface-name": false,
"variable-name": false,
"sort": false,
"no-bitwise": true,
"no-console": false,
"interface-over-type-literal": false,
"no-debugger": true,
"no-duplicate-variable": true,
"no-eval": true,
"no-var-requires": false,
"curly": true,
"no-unused-expression": false,
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"jsx-boolean-value": false,
"no-shadowed-variable": false,
"no-empty": false,
"prefer-conditional-expression": false,
"prefer-const": false,
"member-ordering": false,
"prettier": [true, ".prettierrc"]
}
}