forked from aaa4xu/bookworm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
33 lines (32 loc) · 788 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-config-prettier",
"tslint-microsoft-contrib/latest"
],
"jsRules": {},
"rules": {
"no-var-requires": false,
"no-console": false,
"curly": {
"options": "ignore-same-line"
},
"object-literal-sort-keys": {
"severity": "warning"
},
"prefer-array-literal": false,
"prefer-type-cast": false,
"no-unused-expression": {
"options": "allow-fast-null-checks"
},
"no-relative-imports": false,
"no-bitwise": false,
"one-variable-per-declaration": false,
"variable-name": false,
"export-name": false,
"import-name": false,
"non-literal-fs-path": false
},
"rulesDirectory": ["node_modules/tslint-microsoft-contrib"]
}