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

Commit 8132a87

Browse files
committed
Misc: changelog should be consistent
1 parent f867612 commit 8132a87

1 file changed

Lines changed: 24 additions & 27 deletions

File tree

CHANGELOG.md

Lines changed: 24 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Version [3.0.3](https://github.com/jscs-dev/node-jscs/compare/v3.0.3...v3.0.4) (2016-06-04):
22

3-
Fixed some bugs and improve speed and memory consumption
3+
Fixed some bugs, correctly output CST errors plus improve speed and memory consumption
44

55
### Bug fixes
66
* requireObjectKeysOnNewLine: do not break on object methods (Oleg Gaidarenko)
@@ -33,22 +33,19 @@ Fixed some bugs and improve speed and memory consumption
3333

3434
## Version [3.0.3](https://github.com/jscs-dev/node-jscs/compare/v3.0.2...v3.0.3) (2016-02-16):
3535

36-
## Bug Fix
37-
- Misc: Make an exception for esnext/verbose since they are removed ([#2208](https://github.com/jscs-dev/node-jscs/pull/2208))
38-
- Will give a proper error message for any configuration options that should be removed.
39-
- Revert "Configuration: exclude nested node_modules by default" ([#2222](https://github.com/jscs-dev/node-jscs/pull/2222))
40-
- We wanted to ignored nested `node_modules` by default, but we will stick to ignoring the top level one by default.
36+
### Bug fixes
37+
- Misc: Make an exception for esnext/verbose since they are removed
38+
- Revert "Configuration: exclude nested node_modules by default
4139

4240
## Version [3.0.2](https://github.com/jscs-dev/node-jscs/compare/v3.0.1...v3.0.2) (2016-02-15):
4341

44-
## Bug Fix
45-
- Revert all rule deprecations https://github.com/jscs-dev/node-jscs/pull/2217.
46-
- So that users don't need to change their config when upgrading to 3.0
42+
### Bug fixes
43+
- Revert all rule deprecations
4744

4845
## Version [3.0.1](https://github.com/jscs-dev/node-jscs/compare/v3.0.0...v3.0.1) (2016-02-14):
4946

50-
## Bug Fix
51-
- [`35992b1`](https://github.com/jscs-dev/node-jscs/commit/35992b15ade32c640b3dcf40f5bbc135b76f2c4b) `disallowUnusedVariables`: was including function expressions
47+
### Bug fixes
48+
- disallowUnusedVariables: was including function expressions
5249

5350
## Version [3.0.0](https://github.com/jscs-dev/node-jscs/compare/v2.11.0...v3.0.0) (2016-04-14):
5451

@@ -158,7 +155,7 @@ Other commits (as always) are omitted, since they're all about internal stuff an
158155

159156
## Version [2.10.1](https://github.com/jscs-dev/node-jscs/compare/v2.10.0...v2.10.1) (2016-02-15):
160157

161-
### Bug Fix
158+
#### Bug fixes
162159
- Regression in `requireSpaceBeforeKeywords` [#2135](https://github.com/jscs-dev/node-jscs/issues/2135)
163160

164161
## Version [2.10.0](https://github.com/jscs-dev/node-jscs/compare/v2.9.0...v2.10.0) (2016-02-15):
@@ -225,7 +222,7 @@ import c from 'c';
225222
* `requireSpaceBeforeKeywords`: add a `allExcept` option for filtering out default keywords (gpiress)
226223
* 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.
227224

228-
### Bug Fixes
225+
#### Bug fixeses
229226

230227
* `requireNumericLiterals`: miss if first argument is an Identifier (Robert Jackson)
231228
* `disallowSpacesInsideTemplateStringPlaceholders`: skip the edge case (Oleg Gaidarenko)
@@ -348,7 +345,7 @@ switch (a) {
348345
"allExcept": ["var_args"]
349346
}`
350347

351-
### Bug Fixes
348+
#### Bug fixeses
352349

353350
- [`requireEnhancedObjectLiterals`](http://jscs.info/rule/requireEnhancedObjectLiterals): Don't error for computed properties (Henry Zhu)
354351
- [`requireTemplateStrings`](http://jscs.info/rule/requireTemplateStrings): should not report string to binary (Oleg Gaidarenko)
@@ -401,7 +398,7 @@ This is one of the most popular patterns out there, such as in [idiomatic](https
401398
- The `idiomatic` and `node-style-guide` presets now have the `requireEarlyReturn` rule.
402399
- Whereas the `airbnb` preset is better in treating JSX.
403400

404-
### Bug Fixes
401+
#### Bug fixeses
405402

406403
* [`disallowTrailingWhitespace`](http://jscs.info/rule/disallowTrailingWhitespace) changes for autofix (thanks @lukeapage!)
407404
* `requirePaddingNewlinesBeforeKeywords`: allow function return on the same line
@@ -732,7 +729,7 @@ var a = 1;
732729

733730
Why not fix some more bugs!
734731

735-
### Bug Fixes
732+
#### Bug fixeses
736733
* Fix: `requireSpacesInForStatement` account for parenthesizedExpression (Henry Zhu)
737734

738735
```js
@@ -780,7 +777,7 @@ hzoo
780777
781778
## Version [2.3.4](https://github.com/jscs-dev/node-jscs/compare/v2.3.3...v2.3.4) (10-17-2015):
782779
783-
### Bug Fixes
780+
#### Bug fixeses
784781
- 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)
785782
786783
- 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)
@@ -789,7 +786,7 @@ hzoo
789786
790787
## Version [2.3.3](https://github.com/jscs-dev/node-jscs/compare/v2.3.2...v2.3.3) (10-16-2015):
791788
792-
### Bug Fixes
789+
#### Bug fixeses
793790
- 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)
794791
795792
- 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)
@@ -810,7 +807,7 @@ We are probably going to start 3.0 for the next release (mainly integrating [CST
810807
811808
Our current plan is to move our 3.0/cst branch to master and then create a 2.x branch to continue to release bug fixes / contributer PRs. The core team will be mainly focused on tackling issues on our [3.0 roadmap](https://github.com/jscs-dev/node-jscs/issues/1854) (which we are still planning). We would love to hear your feedback on what you think should be in 3.0 and beyond!
812809
813-
### Bug Fixes:
810+
#### Bug fixes:es
814811
815812
* [`disallowMultipleVarDecl`](http://jscs.info/rule/disallowMultipleVarDecl) - improve `{"allExcept": ["require"]}` logic (ValYouW)
816813
@@ -946,7 +943,7 @@ var a,b;
946943
- Preset: add more comma rules to jquery and airbnb presets (Oleg Gaidarenko) [`94f175e`](https://github.com/jscs-dev/node-jscs/commit/94f175eec822f62528e6e5ca5aab0eb1de037243)
947944
- Preset: `wordpress` - change `requireCamelCaseOrUpperCaseIdentifiers` from `true` to `ignoreProperties` [`58ba037`](https://github.com/jscs-dev/node-jscs/commit/58ba030744e8c7e55fa40a08bf19e89fc93a7eed)
948945
949-
### Bug Fixes:
946+
#### Bug fixes:es
950947
951948
- Fix: `disallowParenthesesAroundArrowParam` - account for non-identifiers (`RestElement`, `ArrayPattern`) correctly (Henry Zhu) [`bcfaa51`](https://github.com/jscs-dev/node-jscs/commit/bcfaa5192b09391bdec31adecab14d3861817c8a) [#1831](https://github.com/jscs-dev/node-jscs/issues/1831)
952949
- Fix: `disallowCommaBeforeLineBreak` correctly handle empty object (Oleg Gaidarenko)
@@ -968,7 +965,7 @@ hzoo
968965
969966
## Version [2.2.1](https://github.com/jscs-dev/node-jscs/compare/v2.2.0...v2.2.1) (09-29-2015):
970967
971-
### Bug Fix:
968+
#### Bug fix:es
972969
973970
Quick fix related to checker not returning correctly with excluded files.
974971
@@ -1086,7 +1083,7 @@ We finally added support for [Idiomatic.js](https://github.com/rwaldron/idiomati
10861083
* `requireArrowFunctions`: create an error on function bind (Henry Zhu)
10871084
* Misc: Bucket all rules into groups, test case to ensure new rules have a group (indexzero)
10881085
1089-
### Bug Fixes
1086+
#### Bug fixeses
10901087
10911088
We fixed a bug with exit codes not matching the [wiki](https://github.com/jscs-dev/node-jscs/wiki/Exit-codes) (Oleg Gaidarenko).
10921089
@@ -1248,7 +1245,7 @@ You can use `false` (instead of only `null`) to disable a rule (such as in a pre
12481245
### Enhancements
12491246
* Configuration: disable any rule if its value equals to "false” (Oleg Gaidarenko)
12501247
1251-
### Bug Fixes
1248+
#### Bug fixeses
12521249
* requireDollarBeforejQueryAssignment: Ignore destructuring assignment (Simen Bekkhus)
12531250
* validateIdentation: fix on empty switch blocks (Henry Zhu)
12541251
* disallowQuotedKeysInObjects: fix allowing quoted non-reserved keys (Alexej Yaroshevich)
@@ -1832,15 +1829,15 @@ We're very grateful to everyone who helped out with this release, especially to
18321829
18331830
## Version [1.11.3](https://github.com/jscs-dev/node-jscs/compare/v1.10.0...v1.11.3)
18341831
1835-
### Bug Fixes
1832+
#### Bug fixeses
18361833
* JsFile: ensure getLinesWithCommentsRemoved does not alter future getComments calls. (Mike Sherov)
18371834
18381835
### Misc.
18391836
* modules/utils normalizePath: fixed test for windows env (Alexej Yaroshevich)
18401837
18411838
## Version [1.11.2](https://github.com/jscs-dev/node-jscs/compare/v1.10.0...v1.11.2)
18421839
1843-
### Bug Fixes
1840+
#### Bug fixeses
18441841
* validateIndentation: ignore empty module bodies (Mike Sherov)
18451842
* Object rules: ignore ES5 getters/setters when appropriate. (Mike Sherov)
18461843
* Ensure esprimaOptions is not mistaken for a rule (Yannick Croissant)
@@ -1856,7 +1853,7 @@ We're very grateful to everyone who helped out with this release, especially to
18561853
### New Rules / Rule Values
18571854
* disallowSpaceAfterObjectKeys: implement ignoreSingleLine and ignoreMultiLine options (Henry Zhu)
18581855
1859-
### Bug Fixes
1856+
#### Bug fixeses
18601857
* disallowAllowSpacesInsideParentheses: reintroduce archaic "all" config option (Mike Sherov)
18611858
* requireSpaceBetweenArguments: loosen rule restriction (Mike Sherov)
18621859
* Object Key rules: ignore method syntax (Alexej Yaroshevich)
@@ -1892,7 +1889,7 @@ We're very grateful to everyone who helped out with this release, especially to
18921889
* requireCapitalizedConstructors: accept list of exempt constructors (Sam L'ecuyer)
18931890
* validateIndentation: exception to indentation rules for module pattern (Mike Sherov)
18941891
1895-
### Bug Fixes
1892+
#### Bug fixeses
18961893
* (require|disallow)SpacesInsideArrayBrackets: only check for ArrayExpressions (Mike Sherov)
18971894
* JsFile: remove all duplicate tokens. (Mike Sherov)
18981895
* ObjectExpression Rules: take into account shorthand syntax. (Mike Sherov)

0 commit comments

Comments
 (0)