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
+4-4Lines changed: 4 additions & 4 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](http://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](http://jscs.info/rule/disallowSpacesInsideImportedObjectBraces`) and [`requireSpacesInsideImportedObjectBraces](http://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](http://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](http://jscs.info/rule/requireImportsAlphabetized`) by Ray Hammond
29
+
#### [`requireImportAlphabetized`](http://jscs.info/rule/requireImportAlphabetized) by Ray Hammond
30
30
Keeps your imports alphabetized, pretty handy way to keep your dependency in tidy state.
0 commit comments