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
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,19 +14,19 @@ One drawback from all these changes is that JSCS might be a little, just a littl
14
14
### New rules
15
15
Since this release is about rewrite of internal design, we adding only four new rules (all of them were added by our contributors!).
16
16
17
-
#### [`disallowUnusedVariables](https://jscs.info/rule/disallowUnusedVariables`) by Brian Schemp
17
+
#### [`disallowUnusedVariables](http://jscs.info/rule/disallowUnusedVariables`) by Brian Schemp
18
18
That rule useful when you have `var x = <whatever>` and you don't export that `x` and don't use it. This rule will highlight that and remove it if you want.
19
19
20
-
#### [`disallowSpacesInsideImportedObjectBraces](https://jscs.info/rule/disallowSpacesInsideImportedObjectBraces`) and [`requireSpacesInsideImportedObjectBraces](https://jscs.info/rule/requireSpacesInsideImportedObjectBraces`) by Maks Sadowsky
20
+
#### [`disallowSpacesInsideImportedObjectBraces](http://jscs.info/rule/disallowSpacesInsideImportedObjectBraces`) and [`requireSpacesInsideImportedObjectBraces](http://jscs.info/rule/requireSpacesInsideImportedObjectBraces`) by Maks Sadowsky
21
21
When you need or don't need additional parentheses -
22
22
```js
23
23
import/*–>*/{foo, bar}/*<–*/from'foo-bar';
24
24
```
25
25
26
-
#### [`requireUseStrict](https://jscs.info/rule/requireUseStrict`) Erik Vold
26
+
#### [`requireUseStrict](http://jscs.info/rule/requireUseStrict`) Erik Vold
27
27
Short and cool - ask you to use `"use strict"` pragma on top of the file if you so desire.
28
28
29
-
#### [`requireImportsAlphabetized](https://jscs.info/rule/requireImportsAlphabetized`) by Ray Hammond
29
+
#### [`requireImportsAlphabetized](http://jscs.info/rule/requireImportsAlphabetized`) by Ray Hammond
30
30
Keeps your imports alphabetized, pretty handy way to keep your dependency in tidy state.
31
31
32
32
### Presets
@@ -42,11 +42,11 @@ There are a lot of internal changes but we like to keep this changelog short and
42
42
43
43
Spring release! Yeah, yeah, technically spring only comes in middle of the March (you nerds, you), but we're coming to you a bit earlier!
44
44
45
-
Anyways, there are three new rules, a couple of changes for the `airbnb` preset and important fixes for [`disallowSpacesInsideTemplateStringPlaceholders`](https://jscs.info/rule/disallowSpacesInsideTemplateStringPlaceholders) and [`validateQuoteMarks`](https://jscs.info/rule/validateQuoteMarks) (for all you ES7 lovers).
45
+
Anyways, there are three new rules, a couple of changes for the `airbnb` preset and important fixes for [`disallowSpacesInsideTemplateStringPlaceholders`](http://jscs.info/rule/disallowSpacesInsideTemplateStringPlaceholders) and [`validateQuoteMarks`](http://jscs.info/rule/validateQuoteMarks) (for all you ES7 lovers).
46
46
47
47
### New Rules
48
48
49
-
### [`requireSpaceBeforeDestructuredValues`](https://jscs.info/rule/requireSpaceBeforeDestructuredValues) by Maks Sadowsky
49
+
### [`requireSpaceBeforeDestructuredValues`](http://jscs.info/rule/requireSpaceBeforeDestructuredValues) by Maks Sadowsky
50
50
51
51
Enforces colon spacing after destructuring assignment i.e. [`requireSpaceBeforeObjectValues`](http://jscs.info/rule/requireSpaceBeforeObjectValues) but for destructuring.
### [`disallowArrayDestructuringReturn`](https://jscs.info/rule/disallowArrayDestructuringReturn) by Maks Sadowsky
61
+
### [`disallowArrayDestructuringReturn`](http://jscs.info/rule/disallowArrayDestructuringReturn) by Maks Sadowsky
62
62
63
63
Enforces the [5:3 verse](https://github.com/airbnb/javascript#5.3) of airbnb code style, which prohibits use of array destructuring for thy `CallExpressions`.
0 commit comments