Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
Misc: add 2.3.5 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
hzoo committed Oct 20, 2015
1 parent b14b5f7 commit 1d780c1
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,53 @@
## Version [2.3.5](https://github.com/jscs-dev/node-jscs/compare/v2.3.4...v2.3.5) (10-19-2015):

Why not fix some more bugs!

### Bug Fixes
* Fix: `requireSpacesInForStatement` account for parenthesizedExpression (Henry Zhu)

```js
// allows ()
for (var i = 0; (!reachEnd && (i < elementsToMove)); i++) {
```
* Fix: `disallowCommaBeforeLineBreak`: fix for function params (Henry Zhu)
```js
// allows
function a(b, c) {
console.log('');
}
```
* Fix: `requirePaddingNewLineAfterVariableDeclaration` - allow exported declarations (Henry Zhu)
```js
// allows
export var a = 1;
export let a = 1;
export const a = 1;
```
* Fix: `disallowSpaceAfterKeywords` - fix issue with using default keyword list (Henry Zhu)
```js
// fixes autofix from `return obj` to `returnobj`
```
* Fix: `disallowTrailingComma`, `requireTrailingComma` - support ObjectPattern and ArrayPattern (Henry Zhu)
```js
// disallow
const { foo, bar } = baz;
const [ foo, bar ] = baz;

// require
const { foo, bar, } = baz;
const [ foo, bar, ] = baz;
```
@hzoo
## Version [2.3.4](https://github.com/jscs-dev/node-jscs/compare/v2.3.3...v2.3.4) (10-17-2015):
### Bug Fixes
Expand Down

0 comments on commit 1d780c1

Please sign in to comment.