diff --git a/docs/rules/indent.md b/docs/rules/indent.md index 8be7e972693..039fb453312 100644 --- a/docs/rules/indent.md +++ b/docs/rules/indent.md @@ -212,4 +212,4 @@ const a = 1, ## Compatibility * **JSHint**: `indent` -* **JSCS**: `validateIndentation` +* **JSCS**: [validateIndentation](http://jscs.info/rule/validateIndentation) diff --git a/docs/rules/linebreak-style.md b/docs/rules/linebreak-style.md index cd603e1c55b..a201ea89980 100644 --- a/docs/rules/linebreak-style.md +++ b/docs/rules/linebreak-style.md @@ -75,4 +75,4 @@ If you aren't concerned about having different line endings within you code, the ## Compatibility -* **JSCS**: `validateLineBreaks` +* **JSCS**: [validateLineBreaks](http://jscs.info/rule/validateLineBreaks) diff --git a/docs/rules/object-curly-newline.md b/docs/rules/object-curly-newline.md index a1ee90a0f3b..587ad885bdc 100644 --- a/docs/rules/object-curly-newline.md +++ b/docs/rules/object-curly-newline.md @@ -464,7 +464,7 @@ let [k = function() { ## Compatibility -* **JSCS:** `requirePaddingNewLinesInObjects` and `disallowPaddingNewLinesInObjects` +* **JSCS**: [requirePaddingNewLinesInObjects](http://jscs.info/rule/requirePaddingNewLinesInObjects) and [disallowPaddingNewLinesInObjects](http://jscs.info/rule/disallowPaddingNewLinesInObjects) ## When Not To Use It diff --git a/docs/rules/object-property-newline.md b/docs/rules/object-property-newline.md index edbfad3cb9c..6104c2b9a53 100644 --- a/docs/rules/object-property-newline.md +++ b/docs/rules/object-property-newline.md @@ -79,7 +79,7 @@ You can turn this rule off if you are not concerned with the consistency of newl ## Compatibility -* **JSCS**: `requireObjectKeysOnNewLine` +* **JSCS**: [requireObjectKeysOnNewLine](http://jscs.info/rule/requireObjectKeysOnNewLine) ## Related Rules diff --git a/docs/rules/one-var.md b/docs/rules/one-var.md index 4ce30ab75be..1aec0dfffa5 100644 --- a/docs/rules/one-var.md +++ b/docs/rules/one-var.md @@ -265,8 +265,8 @@ function foo() { ## Compatibility -* **JSHint** - This rule maps to the `onevar` JSHint rule, but allows `let` and `const` to be configured separately. -* **JSCS** - This rule roughly maps to `"disallowMultipleVarDecl"` +* **JSHint**: This rule maps to the `onevar` JSHint rule, but allows `let` and `const` to be configured separately. +* **JSCS**: This rule roughly maps to [disallowMultipleVarDecl](http://jscs.info/rule/disallowMultipleVarDecl) ## Further Reading