From 0e09e1cca885daadd4db5227e2fce60b8ba7a10e Mon Sep 17 00:00:00 2001 From: Markus Oberlehner Date: Thu, 5 Oct 2017 14:20:37 +0200 Subject: [PATCH] Fix max-attributes-per-line example json configuration The first value of the array is expected to be the severity. Keys must be in double quotes. --- docs/rules/max-attributes-per-line.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/rules/max-attributes-per-line.md b/docs/rules/max-attributes-per-line.md index 11118ee18..b125f425f 100644 --- a/docs/rules/max-attributes-per-line.md +++ b/docs/rules/max-attributes-per-line.md @@ -45,11 +45,11 @@ There is a configurable number of attributes that are acceptable in one-line cas ``` { - "vue/max-attributes-per-line": [{ + "vue/max-attributes-per-line": [2, { "singleline": 3, "multiline": { - max: 1, - allowFirstLine: false + "max": 1, + "allowFirstLine": false } }] }