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

Commit c4474c1

Browse files
committed
Misc: use correct headers in changelog
1 parent 508982c commit c4474c1

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

CHANGELOG.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Other commits (as always) are omitted, since they're all about internal stuff an
155155

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

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

161161
## 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';
222222
* `requireSpaceBeforeKeywords`: add a `allExcept` option for filtering out default keywords (gpiress)
223223
* 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.
224224

225-
#### Bug fixes
225+
### Bug fixes
226226

227227
* `requireNumericLiterals`: miss if first argument is an Identifier (Robert Jackson)
228228
* `disallowSpacesInsideTemplateStringPlaceholders`: skip the edge case (Oleg Gaidarenko)
@@ -345,7 +345,7 @@ switch (a) {
345345
"allExcept": ["var_args"]
346346
}`
347347

348-
#### Bug fixes
348+
### Bug fixes
349349

350350
- [`requireEnhancedObjectLiterals`](http://jscs.info/rule/requireEnhancedObjectLiterals): Don't error for computed properties (Henry Zhu)
351351
- [`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
398398
- The `idiomatic` and `node-style-guide` presets now have the `requireEarlyReturn` rule.
399399
- Whereas the `airbnb` preset is better in treating JSX.
400400

401-
#### Bug fixes
401+
### Bug fixes
402402

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

730730
Why not fix some more bugs!
731731

732-
#### Bug fixes
732+
### Bug fixes
733733
* Fix: `requireSpacesInForStatement` account for parenthesizedExpression (Henry Zhu)
734734

735735
```js
@@ -777,7 +777,7 @@ hzoo
777777
778778
## Version [2.3.4](https://github.com/jscs-dev/node-jscs/compare/v2.3.3...v2.3.4) (10-17-2015):
779779
780-
#### Bug fixes
780+
### Bug fixes
781781
- 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)
782782
783783
- 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
786786
787787
## Version [2.3.3](https://github.com/jscs-dev/node-jscs/compare/v2.3.2...v2.3.3) (10-16-2015):
788788
789-
#### Bug fixes
789+
### Bug fixes
790790
- 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)
791791
792792
- 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
10831083
* `requireArrowFunctions`: create an error on function bind (Henry Zhu)
10841084
* Misc: Bucket all rules into groups, test case to ensure new rules have a group (indexzero)
10851085
1086-
#### Bug fixes
1086+
### Bug fixes
10871087
10881088
We fixed a bug with exit codes not matching the [wiki](https://github.com/jscs-dev/node-jscs/wiki/Exit-codes) (Oleg Gaidarenko).
10891089
@@ -1245,7 +1245,7 @@ You can use `false` (instead of only `null`) to disable a rule (such as in a pre
12451245
### Enhancements
12461246
* Configuration: disable any rule if its value equals to "false” (Oleg Gaidarenko)
12471247
1248-
#### Bug fixes
1248+
### Bug fixes
12491249
* requireDollarBeforejQueryAssignment: Ignore destructuring assignment (Simen Bekkhus)
12501250
* validateIdentation: fix on empty switch blocks (Henry Zhu)
12511251
* disallowQuotedKeysInObjects: fix allowing quoted non-reserved keys (Alexej Yaroshevich)
@@ -1829,15 +1829,15 @@ We're very grateful to everyone who helped out with this release, especially to
18291829
18301830
## Version [1.11.3](https://github.com/jscs-dev/node-jscs/compare/v1.10.0...v1.11.3)
18311831
1832-
#### Bug fixes
1832+
### Bug fixes
18331833
* JsFile: ensure getLinesWithCommentsRemoved does not alter future getComments calls. (Mike Sherov)
18341834
18351835
### Misc.
18361836
* modules/utils normalizePath: fixed test for windows env (Alexej Yaroshevich)
18371837
18381838
## Version [1.11.2](https://github.com/jscs-dev/node-jscs/compare/v1.10.0...v1.11.2)
18391839
1840-
#### Bug fixes
1840+
### Bug fixes
18411841
* validateIndentation: ignore empty module bodies (Mike Sherov)
18421842
* Object rules: ignore ES5 getters/setters when appropriate. (Mike Sherov)
18431843
* Ensure esprimaOptions is not mistaken for a rule (Yannick Croissant)
@@ -1853,7 +1853,7 @@ We're very grateful to everyone who helped out with this release, especially to
18531853
### New Rules / Rule Values
18541854
* disallowSpaceAfterObjectKeys: implement ignoreSingleLine and ignoreMultiLine options (Henry Zhu)
18551855
1856-
#### Bug fixes
1856+
### Bug fixes
18571857
* disallowAllowSpacesInsideParentheses: reintroduce archaic "all" config option (Mike Sherov)
18581858
* requireSpaceBetweenArguments: loosen rule restriction (Mike Sherov)
18591859
* Object Key rules: ignore method syntax (Alexej Yaroshevich)
@@ -1889,7 +1889,7 @@ We're very grateful to everyone who helped out with this release, especially to
18891889
* requireCapitalizedConstructors: accept list of exempt constructors (Sam L'ecuyer)
18901890
* validateIndentation: exception to indentation rules for module pattern (Mike Sherov)
18911891
1892-
#### Bug fixes
1892+
### Bug fixes
18931893
* (require|disallow)SpacesInsideArrayBrackets: only check for ArrayExpressions (Mike Sherov)
18941894
* JsFile: remove all duplicate tokens. (Mike Sherov)
18951895
* ObjectExpression Rules: take into account shorthand syntax. (Mike Sherov)

0 commit comments

Comments
 (0)