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

Commit

Permalink
[docs] v4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Lopez committed May 22, 2017
1 parent 9135a0a commit 25656e4
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 6 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

## [v4.1.0] - May 21, 2017
#### Fixes
- valid-jsdoc reported at wrong location ([82a3ca75])

#### Rules Added
- [ter-func-call-spacing](https://github.com/buzinas/tslint-eslint-rules/blob/master/src/docs/rules/terFuncCallSpacingRule.md)

#### Name Change
The following rule names have been renamed since they are no longer accessible with TSLint 5.0.

- `no-irregular-whitespace` changed to `ter-no-irregular-whitespace`
- `no-sparse-arrays` changed to `ter-no-sparse-arrays`

#### Removed
- `use-isnan`: This rule is now provided by TSLint.

[82a3ca75]: https://github.com/buzinas/tslint-eslint-rules/commit/82a3ca75678240976d868498407b3763ff57419c


## [v4.0.0] - April 4, 2017
### Upgraded to [TSLint 5.0](https://github.com/palantir/tslint/releases/tag/5.0.0)

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


[v4.1.0]: https://github.com/buzinas/tslint-eslint-rules/compare/v4.0.0...v4.1.0
[v4.0.0]: https://github.com/buzinas/tslint-eslint-rules/compare/v3.5.1...v4.0.0
[v3.5.1]: https://github.com/buzinas/tslint-eslint-rules/compare/v3.5.0...v3.5.1
[v3.5.0]: https://github.com/buzinas/tslint-eslint-rules/compare/v3.4.0...v3.5.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tslint-eslint-rules",
"version": "4.0.0",
"version": "4.1.0",
"description": "Improve your TSLint with the missing ESLint Rules",
"main": "index.js",
"scripts": {
Expand Down
8 changes: 4 additions & 4 deletions src/docs/rules/sortImportsRule.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ enforce sorting import declarations within module

#### Rationale

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

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

### Config

- `"ignore-case"` does case-insensitive comparisons (default: `false`)
- `"ignore-member-sort"` allows members in multiple type imports to occur in any order (default: `false`)
- `"member-syntax-sort-order"` (default: `["none", "all", "multiple", "single", "alias"]`); all 5 items must be
present in the array, but you can change the order:
- `"member-syntax-sort-order"` (default: `["none", "all", "multiple", "single", "alias"]`); all 5 items must be
present in the array, but you can change the order:
- `none` = import module without exported bindings.
- `all` = import all members provided by exported bindings.
- `multiple` = import multiple members.
Expand Down
2 changes: 1 addition & 1 deletion src/docs/rules/spaceInParensRule.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require or disallow spaces inside parentheses

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

### Config

Expand Down

0 comments on commit 25656e4

Please sign in to comment.