-
-
Notifications
You must be signed in to change notification settings - Fork 752
/
tslint.json
41 lines (41 loc) · 1.16 KB
/
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
37
38
39
40
41
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"linterOptions": {
"exclude": [
"packages/authentication/lib/**",
"packages/authentication-local/lib/**",
"packages/authentication-client/lib/**",
"packages/authentication-oauth/lib/**",
"packages/configuration/lib/**",
"packages/commons/lib/**",
"packages/transport-commons/lib/**",
"packages/tests/lib/**",
"**/node_modules/**",
"**/coverage/**",
"**/dist/**",
"**/*.dist.js"
]
},
"rules": {
"trailing-comma": [ true, { "multiline": "never", "singleline": "never" } ],
"quotemark": [ true, "single", "jsx-double" ],
"member-access": [ true, "no-public" ],
"space-before-function-paren": true,
"variable-name": false,
"max-line-length": false,
"interface-name": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"arrow-parens": false,
"max-classes-per-file": false,
"only-arrow-functions": false,
"no-empty": false,
"no-shadowed-variable": false,
"no-namespace": [ true, "allow-declarations" ]
},
"jsRules": true,
"rulesDirectory": []
}