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

Commit ec55656

Browse files
Francischzoo
authored andcommitted
Docs: fixed CHANGELOG.md links to some rules
Closes gh-1929
1 parent f418a5c commit ec55656

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ We're releasing pretty often now, right? :-)
1414

1515
### Couple new rules
1616

17-
* [`disallowSpaceAfterComma`](http://jscs.info/rules/disallowSpaceAfterComma) - to have an opposite rule to [`disallowSpaceBeforeComma`](http://jscs.info/rules/disallowSpaceBeforeComma):
17+
* [`disallowSpaceAfterComma`](http://jscs.info/rule/disallowSpaceAfterComma) - to have an opposite rule to [`disallowSpaceBeforeComma`](http://jscs.info/rule/disallowSpaceBeforeComma):
1818

1919
```js
2020
[1,2,3] // valid
2121
[1, 2, 3] // invalid
2222
```
2323

24-
* [`requireAlignedMultilineParams`](http://jscs.info/rules/requireAlignedMultilineParams) - a nice addition to our indentation rules:
24+
* [`requireAlignedMultilineParams`](http://jscs.info/rule/requireAlignedMultilineParams) - a nice addition to our indentation rules:
2525

2626
```js
2727
var test = function(one, two,
@@ -32,15 +32,15 @@ var test = function(one, two,
3232

3333
### Some new rule options
3434

35-
* [`requireDotNotation`](http://jscs.info/rules/requireDotNotation) now supports fancy letters like `π` -
35+
* [`requireDotNotation`](http://jscs.info/rule/requireDotNotation) now supports fancy letters like `π` -
3636

3737
```js
3838
obj["ಠ_ಠ"] // This is wrong!
3939
obj.ಠ_ಠ // Now you get it :-)
4040
```
4141

42-
* [`maxNumberOfLines`](http://jscs.info/rules/maxNumberOfLines) can now ignore comments with the `{"allExcept": ["comments"]}` option
43-
* [`requireObjectKeysOnNewLine`](http://jscs.info/rules/requireObjectKeysOnNewLine) can ignore object properties on the same line with `{"allExcept": ["sameLine"]}` option -
42+
* [`maxNumberOfLines`](http://jscs.info/rule/maxNumberOfLines) can now ignore comments with the `{"allExcept": ["comments"]}` option
43+
* [`requireObjectKeysOnNewLine`](http://jscs.info/rule/requireObjectKeysOnNewLine) can ignore object properties on the same line with `{"allExcept": ["sameLine"]}` option -
4444
```js
4545
var whatDoesAnimalsSay = {
4646
cat: 'meow', dog: 'woof', fox: 'What does it say?' // this is cool now

0 commit comments

Comments
 (0)