You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 23, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+20-7Lines changed: 20 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,19 @@ var whatDoesAnimalsSay = {
47
47
};
48
48
```
49
49
50
+
### Fixes
51
+
52
+
* Account for bare blocks in both [`disallowNewlineBeforeBlockStatements`](http://jscs.info/rule/disallowNewlineBeforeBlockStatements) and [`disallowSpaceBeforeBlockStatements`](http://jscs.info/rule/disallowSpaceBeforeBlockStatements)
53
+
54
+
```js
55
+
// allows
56
+
var a =1;
57
+
58
+
{
59
+
let b =1;
60
+
}
61
+
```
62
+
50
63
## Version [2.3.5](https://github.com/jscs-dev/node-jscs/compare/v2.3.4...v2.3.5) (10-19-2015):
51
64
52
65
Why not fix some more bugs!
@@ -95,7 +108,7 @@ const { foo, bar, } = baz;
95
108
const [ foo, bar, ] = baz;
96
109
```
97
110
98
-
@hzoo
111
+
hzoo
99
112
100
113
## Version [2.3.4](https://github.com/jscs-dev/node-jscs/compare/v2.3.3...v2.3.4) (10-17-2015):
101
114
@@ -104,7 +117,7 @@ const [ foo, bar, ] = baz;
104
117
105
118
- Fixed an issue with all function spacing rules not accounting for the generators [`a2c009f`](https://github.com/jscs-dev/node-jscs/commit/a2c009f19aaf410a46abb3edfbc56d4aa9931f41) [`#1175`](https://github.com/jscs-dev/node-jscs/issues/1175)
106
119
107
-
@hzoo
120
+
hzoo
108
121
109
122
## Version [2.3.3](https://github.com/jscs-dev/node-jscs/compare/v2.3.2...v2.3.3) (10-16-2015):
110
123
@@ -113,7 +126,7 @@ const [ foo, bar, ] = baz;
113
126
114
127
- Fixed an autofix issue with all function spacing rules and not accounting for the async keyword [`cf134a1`](https://github.com/jscs-dev/node-jscs/commit/cf134a12c1ab0bb7a23c7197780593bfdb8682e2) [`#1873`](https://github.com/jscs-dev/node-jscs/issues/1873)
115
128
116
-
@hzoo
129
+
hzoo
117
130
118
131
## Version [2.3.2](https://github.com/jscs-dev/node-jscs/compare/v2.3.1...v2.3.2) (10-14-2015):
119
132
@@ -198,7 +211,7 @@ Again, a big thanks to everything using [JSCS](jscs.info)! Definitely continue t
198
211
199
212
We'll probably be moving more of the new rule/option issues to [`orphaned`](https://github.com/jscs-dev/node-jscs/issues?q=label%3Aorphaned+is%3Aclosed) which just means that they are on hold but anyone can still PR it or reopen it later. Remember to tweet at us at [@jscs_dev](https://twitter.com/jscs_dev) and chat with us on our [gitter room](https://gitter.im/jscs-dev/node-jscs)!
200
213
201
-
@hzoo
214
+
hzoo
202
215
203
216
## Version [2.3.0](https://github.com/jscs-dev/node-jscs/compare/v2.2.1...v2.3.0) (10-07-2015):
204
217
@@ -273,7 +286,7 @@ var a,b;
273
286
274
287
Again, a big thanks to everything using JSCS! Definitely continue to report any bugs and new ideas! We always appreciate any help/PRs as we don't have that many resources!
275
288
276
-
@hzoo
289
+
hzoo
277
290
278
291
### Other
279
292
@@ -454,15 +467,15 @@ We have a [`beginner-friendly`](https://github.com/jscs-dev/node-jscs/labels/beg
454
467
455
468
Thanks to everyone who has been submitting issues/PRs!
456
469
457
-
It's been almost a year since I (@hzoo) really started contributing to open source. It's still crazy to me that my first pull request was just adding the [table of contents](https://github.com/jscs-dev/node-jscs/pull/677). I was so excited to contribute that day!
470
+
It's been almost a year since I (hzoo) really started contributing to open source. It's still crazy to me that my first pull request was just adding the [table of contents](https://github.com/jscs-dev/node-jscs/pull/677). I was so excited to contribute that day!
458
471
459
472
Little did I know I would slowly do more and more - typo fixes, docs changes, bugfixes, rules, and then eventually become part of the team! I've become a better communicator and become more confident to give and take constructive feedback. I'm currently still figuring out how to review PRs, label issues, do changelogs (like right now), release, etc.
460
473
461
474
So much has happened after starting that one simple contribution! Even though I know a lot more about ASTs, javascript/node, and programming style, it all adds up to much more than that technical knowledge.
462
475
463
476
Contributing here helped me make PRs to a lot of other projects (in my case babel, eslint, and others). I understand more that it doesn't take a special person to start helping out. I really hope to encourage others to join our awesome open source community at large!
0 commit comments