-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
37 lines (37 loc) · 1.08 KB
/
Copy pathtslint.json
File metadata and controls
37 lines (37 loc) · 1.08 KB
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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-react",
"tslint-eslint-rules"
],
"jsRules": {},
"rules": {
"arrow-parens": [true],
"ban-types": [false],
"curly": true,
"comment-format": [true, "check-space"],
"default-imported":[false],
"eofline": true,
"import-blacklist":[true],
"indent": [true, "spaces", 2],
"max-classes-per-file": [true, 1],
"max-line-length": [true, 180],
"no-arg": [true],
"no-conditional-assignment": [true],
"no-console": [true],
"no-debugger": [true],
"no-eval": [0],
"no-magic-numbers": [true, -1, 0, 1, 2],
"no-return-await": [true],
"no-string-literal": [true],
"no-var-keyword": [true],
"no-var-requires": [false],
"object-curly-spacing": [true],
"quotemark": [true, "single", "jsx-double"],
"radix": [true],
"semicolon": [true, "always"],
"jsx-no-multiline-js": [false]
},
"rulesDirectory": []
}