-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtslint.json
40 lines (40 loc) · 1.1 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
38
39
40
{
"extends": ["tslint-react", "tslint:latest"],
"rules": {
"arrow-parens": false,
"array-type": false,
"curly": false,
"interface-name": [true, "never-prefix"],
"jsx-boolean-value": [true, "never"],
"jsx-curly-spacing": false,
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"jsx-no-string-ref": true,
"max-line-length": false,
"member-access": false,
"member-ordering": false,
"no-any": true,
"no-dynamic-delete": true,
"no-empty": false,
"no-implicit-dependencies": false,
"no-invalid-this": true,
"no-non-null-assertion": true,
"no-parameter-reassignment": true,
"no-submodule-imports": false,
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-sort-keys": false,
"ordered-imports": false,
"prefer-conditional-expression": false,
"semicolon": false,
"space-before-function-paren": false,
"switch-default": false,
"trailing-comma": false,
"variable-name": [
true,
"allow-leading-underscore",
"allow-pascal-case",
"ban-keywords",
"check-format"
]
}
}