forked from oauthjs/node-oauth2-server
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtslint.json
More file actions
executable file
·26 lines (26 loc) · 787 Bytes
/
tslint.json
File metadata and controls
executable file
·26 lines (26 loc) · 787 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
{
// "defaultSeverity": "error",
"extends": ["tslint:recommended", "tslint:all", "tslint:latest"],
"jsRules": {
"no-unused-expression": true
},
"rules": {
"arrow-parens": false,
"completed-docs": false,
"file-name-casing": [true, "kebab-case"],
"no-object-literal-type-assertion": [false],
"interface-name": [false],
"max-line-length": [true, 120],
"member-access": [false],
"member-ordering": [false],
"no-default-export": [false],
"no-magic-numbers": [false],
"no-unsafe-any": false,
"object-literal-sort-keys": false,
"ordered-imports": [false],
"quotemark": [true, "single"],
"semicolon": [true, "always", "ignore-bound-class-methods"],
"strict-boolean-expressions": [false]
},
"rulesDirectory": []
}