forked from bencompton/framework7-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
51 lines (51 loc) · 1.57 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
41
42
43
44
45
46
47
48
49
50
51
{
"extends":["tslint-microsoft-contrib", "tslint-react"],
"rules": {
"no-for-in-array": false,
"restrict-plus-operands": false,
"missing-jsdoc": false,
"eofline": false,
"linebreak-style": [],
"ordered-imports": [],
"export-name": false,
"no-default-export": true,
"no-increment-decrement": false,
"align": [],
"no-any": false,
"max-line-length": [true, 180],
"insecure-random": false ,
"quotemark": [true, "single", "jsx-double"],
"variable-name": [true, "allow-pascal-case", "allow-leading-underscore"],
"no-consecutive-blank-lines": [true, 1],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-module",
"check-type"
],
"react-this-binding-issue": false,
"react-tsx-curly-spacing": false,
"jsx-no-lambda": false,
"import-name": false,
"no-unused-variable": [false],
"no-console": [false],
"react-a11y-anchors": [false],
"react-a11y-aria-unsupported-elements": [false],
"react-a11y-event-has-role": [false],
"react-a11y-image-button-has-alt": [false],
"react-a11y-img-has-alt": [false],
"react-a11y-lang": [false],
"react-a11y-meta": [false],
"react-a11y-props": [false],
"react-a11y-proptypes": [false],
"react-a11y-role-has-required-aria-props": [false],
"react-a11y-role-supports-aria-props": [false],
"react-a11y-role": [false],
"react-a11y-tabindex-no-positive": [false],
"react-a11y-titles": [false],
"no-relative-imports": false
}
}