forked from tngan/samlify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
21 lines (21 loc) · 732 Bytes
/
tslint.json
File metadata and controls
21 lines (21 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"extends": "tslint:recommended",
"rulesDirectory": [],
"rules": {
"arrow-parens": [true, "ban-single-arg-parens"],
"comment-format": false,
"interface-name": [true, "never-prefix"],
"jsdoc-format": false,
"max-line-length": false,
"member-access": false,
"no-console": [false],
"no-consecutive-blank-lines": [true, 3],
"no-empty-interface": false,
"no-string-literal": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"]
},
"jsRules": {}
}