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.
*[`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):
18
18
19
19
```js
20
20
[1,2,3] // valid
21
21
[1, 2, 3] // invalid
22
22
```
23
23
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:
25
25
26
26
```js
27
27
vartest=function(one, two,
@@ -32,15 +32,15 @@ var test = function(one, two,
32
32
33
33
### Some new rule options
34
34
35
-
*[`requireDotNotation`](http://jscs.info/rules/requireDotNotation) now supports fancy letters like `π` -
35
+
*[`requireDotNotation`](http://jscs.info/rule/requireDotNotation) now supports fancy letters like `π` -
36
36
37
37
```js
38
38
obj["ಠ_ಠ"] // This is wrong!
39
39
obj.ಠ_ಠ // Now you get it :-)
40
40
```
41
41
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 -
44
44
```js
45
45
var whatDoesAnimalsSay = {
46
46
cat:'meow', dog:'woof', fox:'What does it say?'// this is cool now
0 commit comments