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
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -155,7 +155,7 @@ Other commits (as always) are omitted, since they're all about internal stuff an
155
155
156
156
## Version [2.10.1](https://github.com/jscs-dev/node-jscs/compare/v2.10.0...v2.10.1) (2016-02-15):
157
157
158
-
####Bug fixes
158
+
### Bug fixes
159
159
- Regression in `requireSpaceBeforeKeywords`[#2135](https://github.com/jscs-dev/node-jscs/issues/2135)
160
160
161
161
## Version [2.10.0](https://github.com/jscs-dev/node-jscs/compare/v2.9.0...v2.10.0) (2016-02-15):
@@ -222,7 +222,7 @@ import c from 'c';
222
222
*`requireSpaceBeforeKeywords`: add a `allExcept` option for filtering out default keywords (gpiress)
223
223
* This allows you do specify exceptions to the all keywords instead of creating an array of whitelisted keywords when you only want to blacklist a few.
224
224
225
-
####Bug fixes
225
+
### Bug fixes
226
226
227
227
*`requireNumericLiterals`: miss if first argument is an Identifier (Robert Jackson)
228
228
*`disallowSpacesInsideTemplateStringPlaceholders`: skip the edge case (Oleg Gaidarenko)
@@ -345,7 +345,7 @@ switch (a) {
345
345
"allExcept": ["var_args"]
346
346
}`
347
347
348
-
####Bug fixes
348
+
### Bug fixes
349
349
350
350
-[`requireEnhancedObjectLiterals`](http://jscs.info/rule/requireEnhancedObjectLiterals): Don't error for computed properties (Henry Zhu)
351
351
-[`requireTemplateStrings`](http://jscs.info/rule/requireTemplateStrings): should not report string to binary (Oleg Gaidarenko)
@@ -398,7 +398,7 @@ This is one of the most popular patterns out there, such as in [idiomatic](https
398
398
- The `idiomatic` and `node-style-guide` presets now have the `requireEarlyReturn` rule.
399
399
- Whereas the `airbnb` preset is better in treating JSX.
400
400
401
-
####Bug fixes
401
+
### Bug fixes
402
402
403
403
*[`disallowTrailingWhitespace`](http://jscs.info/rule/disallowTrailingWhitespace) changes for autofix (thanks @lukeapage!)
404
404
*`requirePaddingNewlinesBeforeKeywords`: allow function return on the same line
@@ -729,7 +729,7 @@ var a = 1;
729
729
730
730
Why not fix some more bugs!
731
731
732
-
####Bug fixes
732
+
### Bug fixes
733
733
* Fix: `requireSpacesInForStatement` account for parenthesizedExpression (Henry Zhu)
734
734
735
735
```js
@@ -777,7 +777,7 @@ hzoo
777
777
778
778
## Version [2.3.4](https://github.com/jscs-dev/node-jscs/compare/v2.3.3...v2.3.4) (10-17-2015):
779
779
780
-
#### Bug fixes
780
+
### Bug fixes
781
781
- Change `requireVarDeclFirst` to ignore let and const [`2199ca4`](https://github.com/jscs-dev/node-jscs/commit/2199ca488a56ff1472d876ac2b21fe2292ae8413) [`#1783`](https://github.com/jscs-dev/node-jscs/issues/1783)
782
782
783
783
- 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)
@@ -786,7 +786,7 @@ hzoo
786
786
787
787
## Version [2.3.3](https://github.com/jscs-dev/node-jscs/compare/v2.3.2...v2.3.3) (10-16-2015):
788
788
789
-
#### Bug fixes
789
+
### Bug fixes
790
790
- Fixed an error with `disallowUnusedParams` and es6 imports [`63526b7`](https://github.com/jscs-dev/node-jscs/commit/63526b73d55eed3719d79527a7a7c7490b4cd2cb) [`#1875`](https://github.com/jscs-dev/node-jscs/issues/1875)
791
791
792
792
- 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)
@@ -1083,7 +1083,7 @@ We finally added support for [Idiomatic.js](https://github.com/rwaldron/idiomati
1083
1083
* `requireArrowFunctions`: create an error on function bind (Henry Zhu)
1084
1084
* Misc: Bucket all rules into groups, test case to ensure new rules have a group (indexzero)
1085
1085
1086
-
#### Bug fixes
1086
+
### Bug fixes
1087
1087
1088
1088
We fixed a bug with exit codes not matching the [wiki](https://github.com/jscs-dev/node-jscs/wiki/Exit-codes) (Oleg Gaidarenko).
1089
1089
@@ -1245,7 +1245,7 @@ You can use `false` (instead of only `null`) to disable a rule (such as in a pre
1245
1245
### Enhancements
1246
1246
* Configuration: disable any rule if its value equals to "false” (Oleg Gaidarenko)
0 commit comments