forked from stitchesjs/stitches
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
37 lines (37 loc) · 1.06 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
{
"extends": ["tslint:recommended"],
"rules": {
"arrow-return-shorthand": [true],
"class-name": true,
"encoding": true,
"interface-name": [false],
"interface-over-type-literal": true,
"max-classes-per-file": false,
"member-access": [true, "no-public"],
"no-bitwise": false,
"no-duplicate-imports": true,
"no-empty-interface": false,
"no-inferrable-types": true,
"no-invalid-template-strings": true,
"no-return-await": true,
"no-shadowed-variable": false,
"no-string-throw": true,
"no-unused-expression": false,
"no-var-keyword": true,
"object-literal-sort-keys": false,
"ordered-imports": [
false,
{
"grouped-imports": true,
"named-imports-order": "lowercase-last"
}
],
"prefer-const": true,
"prefer-for-of": false,
"prefer-function-over-method": true,
"prefer-object-spread": true,
"prefer-template": true,
"switch-default": true,
"variable-name": [true, "allow-leading-underscore", "ban-keywords", "check-format", "allow-pascal-case"]
}
}