-
Notifications
You must be signed in to change notification settings - Fork 9
/
tslint.json
34 lines (34 loc) · 958 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
{
"extends": ["tslint:recommended", "tslint-config-prettier"],
"linterOptions": {
"exclude": ["**/node_modules/**/*", "./src/stubs/*"]
},
"jsRules": {},
"rules": {
"indent": [true, "spaces"],
"quotemark": [true, "single"],
"object-literal-sort-keys": false,
"trailing-comma": false,
"class-name": true,
"semicolon": false,
"no-submodule-imports": [true],
"no-implicit-dependencies": [true, "dev"],
"triple-equals": [true, "allow-null-check"],
"eofline": true,
"jsdoc-format": true,
"member-access": false,
"whitespace": [true, "check-decl", "check-operator", "check-separator", "check-type"],
"curly": true,
"only-arrow-functions": false,
"no-empty-interface": false,
"ordered-imports": [
true,
{
"grouped-imports": true
}
],
"no-trailing-whitespace": true,
"no-floating-promises": { "severity": "warning" }
},
"rulesDirectory": []
}