From e2499342c7d5e4e5e70e6227a4e05588b6ad0ebd Mon Sep 17 00:00:00 2001 From: Matthew Barry Date: Thu, 4 Apr 2019 14:07:01 -0500 Subject: [PATCH] Fix typo in rule docs generation Incorrect rule type selector in rules documentation page was omitting the following rules: * `align` * `arrow-parens` * `eofline` * `import-spacing` * `indent` * `jsdoc-format` * `linebreak-style` * `max-line-length` * `newline-before-return` * `new-parens` * `no-consecutive-blank-lines` * `no-irregular-whitespace` * `no-trailing-whitespace` * `number-literal-format` * `quotemark` * `semicolon` * `trailing-comma` * `typedef-whitespace` * `whitespace` --- docs/rules/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/index.md b/docs/rules/index.md index a44479ebd93..f90a390bbac 100644 --- a/docs/rules/index.md +++ b/docs/rules/index.md @@ -36,4 +36,4 @@ _These rules enforce consistent style across your codebase_: _These rules enforce consistent use of whitespace and punctuation_: -{% include rule_list.html ruleType="format" %} +{% include rule_list.html ruleType="formatting" %}