From 2542f043cd9ec953cbe43ee9391d75c42a512522 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Fiorio?= Date: Wed, 8 Nov 2017 15:26:03 +0100 Subject: [PATCH] Docs: Add missing options for `lines-around-comment` (#9589) `allowClassStart` and `allowClassEnd` were missing from the options list. --- docs/rules/lines-around-comment.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/rules/lines-around-comment.md b/docs/rules/lines-around-comment.md index ae8ef4de778..61af5969813 100644 --- a/docs/rules/lines-around-comment.md +++ b/docs/rules/lines-around-comment.md @@ -21,6 +21,8 @@ This rule has an object option: * `"allowObjectEnd": true` allows comments to appear at the end of object literals * `"allowArrayStart": true` allows comments to appear at the start of array literals * `"allowArrayEnd": true` allows comments to appear at the end of array literals +* `"allowClassStart": true` allows comments to appear at the start of classes +* `"allowClassEnd": true` allows comments to appear at the end of classes * `"applyDefaultIgnorePatterns"` enables or disables the default comment patterns to be ignored by the rule * `"ignorePattern"` custom patterns to be ignored by the rule