Skip to content

Commit 3d66461

Browse files
committed
regenerated Readme
1 parent ae5215f commit 3d66461

File tree

1 file changed

+19
-10
lines changed

1 file changed

+19
-10
lines changed

Diff for: README.md

+19-10
Original file line numberDiff line numberDiff line change
@@ -1075,11 +1075,10 @@ export const getFilteredTodos = createSelector(
10751075
"comment-format": [true, "check-space"],
10761076
"import-blacklist": [true, "rxjs"],
10771077
"interface-over-type-literal": false,
1078+
"interface-name": false,
10781079
"max-line-length": [true, 120],
10791080
"member-access": false,
1080-
"member-ordering": [true, {
1081-
"order": "fields-first"
1082-
}],
1081+
"member-ordering": [true, { "order": "fields-first" }],
10831082
"newline-before-return": false,
10841083
"no-any": false,
10851084
"no-empty-interface": false,
@@ -1088,12 +1087,9 @@ export const getFilteredTodos = createSelector(
10881087
"no-invalid-this": [true, "check-function-in-method"],
10891088
"no-null-keyword": false,
10901089
"no-require-imports": false,
1091-
"no-switch-case-fall-through": true,
1092-
"no-submodule-imports": [true, "rxjs", "@src"],
1090+
"no-submodule-imports": [true, "@src", "rxjs"],
1091+
"no-this-assignment": [true, { "allow-destructuring": true }],
10931092
"no-trailing-whitespace": true,
1094-
"no-this-assignment": [true, {
1095-
"allow-destructuring": true
1096-
}],
10971093
"no-unused-variable": [true, "react"],
10981094
"object-literal-sort-keys": false,
10991095
"object-literal-shorthand": false,
@@ -1102,11 +1098,24 @@ export const getFilteredTodos = createSelector(
11021098
"ordered-imports": [false],
11031099
"prefer-method-signature": false,
11041100
"prefer-template": [true, "allow-single-concat"],
1105-
"semicolon": [true, "ignore-interfaces"],
11061101
"quotemark": [true, "single", "jsx-double"],
1102+
"semicolon": [true, "always"],
1103+
"trailing-comma": [true, {
1104+
"singleline": "never",
1105+
"multiline": {
1106+
"objects": "always",
1107+
"arrays": "always",
1108+
"functions": "never",
1109+
"typeLiterals": "ignore"
1110+
},
1111+
"esSpecCompliant": true
1112+
}],
11071113
"triple-equals": [true, "allow-null-check"],
1114+
"type-literal-delimiter": true,
11081115
"typedef": [true,"parameter", "property-declaration"],
1109-
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore"]
1116+
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore"],
1117+
// tslint-react
1118+
"jsx-no-lambda": false
11101119
}
11111120
}
11121121
```

0 commit comments

Comments
 (0)