From a94d4aa970da830ba76c676f7fb1b92d5821b8a8 Mon Sep 17 00:00:00 2001 From: yosuke ota Date: Mon, 1 Nov 2021 19:24:37 +0900 Subject: [PATCH] Fix doc max-attributes-per-line.md --- docs/rules/max-attributes-per-line.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/rules/max-attributes-per-line.md b/docs/rules/max-attributes-per-line.md index a537eef33..cecbfd563 100644 --- a/docs/rules/max-attributes-per-line.md +++ b/docs/rules/max-attributes-per-line.md @@ -67,8 +67,8 @@ There is a configurable number of attributes that are acceptable in one-line cas } ``` -- `singleline.max` (`number`) ... The number of maximum attributes per line when the opening tag is in a single line. Default is `1`. -- `multiline.max` (`number`) ... The max number of attributes per line when the opening tag is in multiple lines. Default is `1`. This can be `{ multiline: 1 }` instead of `{ multiline: { max: 1 }}` if you don't configure `allowFirstLine` property. +- `singleline.max` (`number`) ... The number of maximum attributes per line when the opening tag is in a single line. Default is `1`. This can be `{ singleline: 1 }` instead of `{ singleline: { max: 1 }}`. +- `multiline.max` (`number`) ... The max number of attributes per line when the opening tag is in multiple lines. Default is `1`. This can be `{ multiline: 1 }` instead of `{ multiline: { max: 1 }}`. ### `"singleline": 3`