forked from etienne-martin/device-detector-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
27 lines (26 loc) · 827 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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended", "tslint-config-prettier"],
"jsRules": {},
"rules": {
"one-variable-per-declaration": false,
"quotemark": [true, "double"],
"no-submodule-imports": false,
"no-unused-variable": true,
"promise-function-async": true,
"max-file-line-count": [true, 300],
"no-trailing-whitespace": true,
"newline-before-return": true,
"no-consecutive-blank-lines": true,
"no-console": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"interface-name": false,
"whitespace": [true, "check-branch", "check-operator", "check-typecast"],
"no-bitwise": false,
"no-var-requires": false,
"curly": [true, "ignore-same-line"],
"import-blacklist": [true, "lodash"]
},
"rulesDirectory": []
}