forked from alexkatz/react-tiny-popover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
37 lines (37 loc) · 1.12 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:latest", "tslint-react"],
"rules": {
"jsx-wrap-multiline": false,
"quotemark": [true, "single", "jsx-single"],
"ordered-imports": [false],
"arrow-parens": false,
"only-arrow-functions": [false],
"semicolon": [true],
"no-unused-variable": true,
"object-literal-sort-keys": false,
"space-before-function-paren": [true, {
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}],
"max-line-length": [false],
"no-console": [false],
"jsx-no-multiline-js": false,
"no-trailing-whitespace": false,
"interface-name": [false, "never-prefix"],
"object-literal-key-quotes": [false],
"no-shadowed-variable": false,
"no-empty": false,
"no-empty-interface": false,
"no-object-literal-type-assertion": false,
"jsx-no-lambda": false,
"no-var-requires": false,
"no-string-literal": false,
"member-ordering": [
false
],
"jsx-boolean-value": false,
"prefer-for-of": false,
"prefer-conditional-expression": false
}
}