forked from classy-org/classy-pay-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
31 lines (31 loc) · 856 Bytes
/
tslint.json
File metadata and controls
31 lines (31 loc) · 856 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"quotemark": [true, "single", "avoid-escape"],
"no-var-requires": false,
"ordered-imports": [
true,
{
"grouped-imports": true,
"import-sources-order": "any",
"named-imports-order": "any"
}
],
"no-empty": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"no-shadowed-variable": false,
"no-angle-bracket-type-assertion": false,
"curly": [true, "ignore-same-line"],
"object-literal-sort-keys": false,
"interface-name": false,
"array-type": false,
"member-ordering": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
"no-conditional-assignment": false
},
"rulesDirectory": []
}