Skip to content
This repository was archived by the owner on Feb 21, 2022. It is now read-only.

Commit 25656e4

Browse files
author
Manuel Lopez
committed
[docs] v4.1.0
1 parent 9135a0a commit 25656e4

File tree

4 files changed

+26
-6
lines changed

4 files changed

+26
-6
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Change Log
22

3+
## [v4.1.0] - May 21, 2017
4+
#### Fixes
5+
- valid-jsdoc reported at wrong location ([82a3ca75])
6+
7+
#### Rules Added
8+
- [ter-func-call-spacing](https://github.com/buzinas/tslint-eslint-rules/blob/master/src/docs/rules/terFuncCallSpacingRule.md)
9+
10+
#### Name Change
11+
The following rule names have been renamed since they are no longer accessible with TSLint 5.0.
12+
13+
- `no-irregular-whitespace` changed to `ter-no-irregular-whitespace`
14+
- `no-sparse-arrays` changed to `ter-no-sparse-arrays`
15+
16+
#### Removed
17+
- `use-isnan`: This rule is now provided by TSLint.
18+
19+
[82a3ca75]: https://github.com/buzinas/tslint-eslint-rules/commit/82a3ca75678240976d868498407b3763ff57419c
20+
21+
322
## [v4.0.0] - April 4, 2017
423
### Upgraded to [TSLint 5.0](https://github.com/palantir/tslint/releases/tag/5.0.0)
524

@@ -278,6 +297,7 @@ Note that the npm release `v3.2.1` only contains this hotfix [cb01358].
278297
- Added and made lots of improvements in README.md
279298

280299

300+
[v4.1.0]: https://github.com/buzinas/tslint-eslint-rules/compare/v4.0.0...v4.1.0
281301
[v4.0.0]: https://github.com/buzinas/tslint-eslint-rules/compare/v3.5.1...v4.0.0
282302
[v3.5.1]: https://github.com/buzinas/tslint-eslint-rules/compare/v3.5.0...v3.5.1
283303
[v3.5.0]: https://github.com/buzinas/tslint-eslint-rules/compare/v3.4.0...v3.5.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tslint-eslint-rules",
3-
"version": "4.0.0",
3+
"version": "4.1.0",
44
"description": "Improve your TSLint with the missing ESLint Rules",
55
"main": "index.js",
66
"scripts": {

src/docs/rules/sortImportsRule.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ enforce sorting import declarations within module
77

88
#### Rationale
99

10-
When declaring multiple imports, a sorted list of import declarations make it easier for developers to
10+
When declaring multiple imports, a sorted list of import declarations make it easier for developers to
1111
read the code and find necessary imports later. This rule is purely a matter of style.
1212

13-
This rule checks all import declarations and verifies that all imports are first sorted by the used member
13+
This rule checks all import declarations and verifies that all imports are first sorted by the used member
1414
syntax and then alphabetically by the first member or alias name.
1515

1616
### Config
1717

1818
- `"ignore-case"` does case-insensitive comparisons (default: `false`)
1919
- `"ignore-member-sort"` allows members in multiple type imports to occur in any order (default: `false`)
20-
- `"member-syntax-sort-order"` (default: `["none", "all", "multiple", "single", "alias"]`); all 5 items must be
21-
present in the array, but you can change the order:
20+
- `"member-syntax-sort-order"` (default: `["none", "all", "multiple", "single", "alias"]`); all 5 items must be
21+
present in the array, but you can change the order:
2222
- `none` = import module without exported bindings.
2323
- `all` = import all members provided by exported bindings.
2424
- `multiple` = import multiple members.

src/docs/rules/spaceInParensRule.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require or disallow spaces inside parentheses
99

1010
This rule will enforce consistency of spacing directly inside of parentheses,
1111
by disallowing or requiring one or more spaces to the right of (and to the
12-
left of). In either case, () will still be allowed.
12+
left of). In either case, () will still be allowed.
1313

1414
### Config
1515

0 commit comments

Comments
 (0)