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

Commit ca68499

Browse files
committed
Docs: fix changelog [ci skip]
1 parent d83cee0 commit ca68499

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ One drawback from all these changes is that JSCS might be a little, just a littl
1414
### New rules
1515
Since this release is about rewrite of internal design, we adding only four new rules (all of them were added by our contributors!).
1616

17-
#### [`disallowUnusedVariables](http://jscs.info/rule/disallowUnusedVariables`) by Brian Schemp
17+
#### [`disallowUnusedVariables`](http://jscs.info/rule/disallowUnusedVariables) by Brian Schemp
1818
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.
1919

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
2121
When you need or don't need additional parentheses -
2222
```js
2323
import /*–>*/{foo, bar}/*<–*/ from 'foo-bar';
2424
```
2525

26-
#### [`requireUseStrict](http://jscs.info/rule/requireUseStrict`) Erik Vold
26+
#### [`requireUseStrict`](http://jscs.info/rule/requireUseStrict`) Erik Vold
2727
Short and cool - ask you to use `"use strict"` pragma on top of the file if you so desire.
2828

29-
#### [`requireImportsAlphabetized](http://jscs.info/rule/requireImportsAlphabetized`) by Ray Hammond
29+
#### [`requireImportAlphabetized`](http://jscs.info/rule/requireImportAlphabetized) by Ray Hammond
3030
Keeps your imports alphabetized, pretty handy way to keep your dependency in tidy state.
3131

3232
### Presets

0 commit comments

Comments
 (0)