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
+24-27Lines changed: 24 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
## Version [3.0.3](https://github.com/jscs-dev/node-jscs/compare/v3.0.3...v3.0.4) (2016-06-04):
2
2
3
-
Fixed some bugs and improve speed and memory consumption
3
+
Fixed some bugs, correctly output CST errors plus improve speed and memory consumption
4
4
5
5
### Bug fixes
6
6
* requireObjectKeysOnNewLine: do not break on object methods (Oleg Gaidarenko)
@@ -33,22 +33,19 @@ Fixed some bugs and improve speed and memory consumption
33
33
34
34
## Version [3.0.3](https://github.com/jscs-dev/node-jscs/compare/v3.0.2...v3.0.3) (2016-02-16):
35
35
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
41
39
42
40
## Version [3.0.2](https://github.com/jscs-dev/node-jscs/compare/v3.0.1...v3.0.2) (2016-02-15):
43
41
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
47
44
48
45
## Version [3.0.1](https://github.com/jscs-dev/node-jscs/compare/v3.0.0...v3.0.1) (2016-02-14):
49
46
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
52
49
53
50
## Version [3.0.0](https://github.com/jscs-dev/node-jscs/compare/v2.11.0...v3.0.0) (2016-04-14):
54
51
@@ -158,7 +155,7 @@ Other commits (as always) are omitted, since they're all about internal stuff an
158
155
159
156
## Version [2.10.1](https://github.com/jscs-dev/node-jscs/compare/v2.10.0...v2.10.1) (2016-02-15):
160
157
161
-
### Bug Fix
158
+
####Bug fixes
162
159
- Regression in `requireSpaceBeforeKeywords`[#2135](https://github.com/jscs-dev/node-jscs/issues/2135)
163
160
164
161
## 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';
225
222
*`requireSpaceBeforeKeywords`: add a `allExcept` option for filtering out default keywords (gpiress)
226
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.
227
224
228
-
### Bug Fixes
225
+
####Bug fixeses
229
226
230
227
*`requireNumericLiterals`: miss if first argument is an Identifier (Robert Jackson)
231
228
*`disallowSpacesInsideTemplateStringPlaceholders`: skip the edge case (Oleg Gaidarenko)
@@ -348,7 +345,7 @@ switch (a) {
348
345
"allExcept": ["var_args"]
349
346
}`
350
347
351
-
### Bug Fixes
348
+
####Bug fixeses
352
349
353
350
-[`requireEnhancedObjectLiterals`](http://jscs.info/rule/requireEnhancedObjectLiterals): Don't error for computed properties (Henry Zhu)
354
351
-[`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
401
398
- The `idiomatic` and `node-style-guide` presets now have the `requireEarlyReturn` rule.
402
399
- Whereas the `airbnb` preset is better in treating JSX.
403
400
404
-
### Bug Fixes
401
+
####Bug fixeses
405
402
406
403
*[`disallowTrailingWhitespace`](http://jscs.info/rule/disallowTrailingWhitespace) changes for autofix (thanks @lukeapage!)
407
404
*`requirePaddingNewlinesBeforeKeywords`: allow function return on the same line
@@ -732,7 +729,7 @@ var a = 1;
732
729
733
730
Why not fix some more bugs!
734
731
735
-
### Bug Fixes
732
+
####Bug fixeses
736
733
* Fix: `requireSpacesInForStatement` account for parenthesizedExpression (Henry Zhu)
737
734
738
735
```js
@@ -780,7 +777,7 @@ hzoo
780
777
781
778
## Version [2.3.4](https://github.com/jscs-dev/node-jscs/compare/v2.3.3...v2.3.4) (10-17-2015):
782
779
783
-
### Bug Fixes
780
+
#### Bug fixeses
784
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)
785
782
786
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)
@@ -789,7 +786,7 @@ hzoo
789
786
790
787
## Version [2.3.3](https://github.com/jscs-dev/node-jscs/compare/v2.3.2...v2.3.3) (10-16-2015):
791
788
792
-
### Bug Fixes
789
+
#### Bug fixeses
793
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)
794
791
795
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)
@@ -810,7 +807,7 @@ We are probably going to start 3.0 for the next release (mainly integrating [CST
810
807
811
808
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!
- Preset: add more comma rules to jquery and airbnb presets (Oleg Gaidarenko) [`94f175e`](https://github.com/jscs-dev/node-jscs/commit/94f175eec822f62528e6e5ca5aab0eb1de037243)
947
944
- Preset: `wordpress` - change `requireCamelCaseOrUpperCaseIdentifiers` from `true` to `ignoreProperties` [`58ba037`](https://github.com/jscs-dev/node-jscs/commit/58ba030744e8c7e55fa40a08bf19e89fc93a7eed)
0 commit comments