From 77cf8edc21526a1d2a5edf1a96c894dd00e49d55 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Fri, 10 Jun 2016 23:08:23 -0700 Subject: [PATCH] Docs: `max-lines option: fix `skipComments` typo Per https://github.com/eslint/eslint/blob/master/lib/rules/max-lines.js#L40 --- docs/rules/max-lines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/max-lines.md b/docs/rules/max-lines.md index ea810ce20d9e..68804b9e7e35 100644 --- a/docs/rules/max-lines.md +++ b/docs/rules/max-lines.md @@ -15,7 +15,7 @@ This rule has a number or object option: * `"skipBlankLines": true` ignore lines made up purely of whitespace. -* `"skipComment": true` ignore lines containing just comments +* `"skipComments": true` ignore lines containing just comments ### code