-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtslint.json
34 lines (34 loc) · 983 Bytes
/
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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended", "tslint-react"],
"jsRules": {},
"rules": {
"object-literal-shorthand": false,
"only-arrow-functions": false,
"arrow-parens": false,
"curly": false,
"eofline": false,
"indent": [true, "spaces"],
"interface-name": false,
"jsx-boolean-value": ["never"],
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"max-classes-per-file": false,
"max-line-length": false,
"member-ordering": false,
"no-console": false,
"no-debugger": false,
"no-namespace": false,
"object-literal-key-quotes": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"quotemark": false,
"jsx-wrap-multiline": false,
"semicolon": false,
"trailing-comma": false,
"variable-name": [true, "allow-leading-underscore", "allow-pascal-case"],
"space-before-function-paren": false,
"no-bitwise": false
},
"rulesDirectory": []
}