-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtslint.json
More file actions
32 lines (32 loc) · 851 Bytes
/
tslint.json
File metadata and controls
32 lines (32 loc) · 851 Bytes
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
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"linterOptions": {
"exclude": ["packages/fargerik-server/src/external/psintCatalog/*"]
},
"rules": {
"no-floating-promises": true,
"no-console": {
"severity": "warning"
},
"member-access": [true, "no-public"],
"member-ordering": false,
"triple-equals": [true, "allow-null-check"],
"variable-name": [
true,
"allow-pascal-case",
"allow-leading-underscore",
"ban-keywords"
],
"interface-name": true,
"no-submodule-imports": false,
"object-literal-sort-keys": false,
"only-arrow-functions": [
true,
"allow-declarations",
"allow-named-functions"
],
"prefer-conditional-expression": false,
"no-implicit-dependencies": [true, "dev"],
"no-switch-case-fall-through": true
}
}