-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
31 lines (31 loc) · 1.01 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"curly": [false],
"no-console": [false],
"quotemark": [true, "single", "jsx-double"],
"semicolon": [true, "always"],
"trailing-comma": [true, "multiline", "singleline"],
"only-arrow-functions": [true, "allow-named-functions"],
"arrow-parens": false,
"variable-name": [true, "check-format", "allow-pascal-case", "allow-leading-underscore"],
"switch-default": false,
"member-access": false,
"ordered-imports": [false],
"jsx-no-multiline-js": [false],
"object-literal-sort-keys": false,
"no-unused-expression": [true, "allow-fast-null-checks"],
"max-classes-per-file": [false],
"object-literal-key-quotes": [true, "as-needed"],
"no-object-literal-type-assertion": false,
"member-ordering": [true,
"static-before-instance",
"variables-before-functions"
]
},
"rulesDirectory": []
}