title | id | fixable | cateogry |
---|---|---|---|
Spaces between attributes |
attr-spacing |
true |
style |
Warn about the existence or number of spaces and tabs between attributes.
🔧 Fixable
👎 Examples of incorrect code for this rule
<img src="path/to"src="path/to2">
👍 Examples of correct code for this rule
<img src="path/to" src="path/to2">
Type: boolean
Type: "either" | "always" | "never"
value | default | description |
---|---|---|
"either" |
✓ | Not warn about line-break. |
"always" |
Warn if not exist line-break. | |
"never" |
Warn if exist line-break. |
Type: number | false
value | default | description |
---|---|---|
[number] | ✓ 1 |
Warn if not equal spaces and the set number. |
false |
Not warn about spaces. |
warning