@html-eslint/no-multiple-empty-lines
user-scalable=no
in <meta name="viewport">
.
Disallow use of Rule Details
This rule disallows the use of empty lines which exceeded the maximum lines allowed.
Options
max
(default 2): enforces a maximum number of consecutive empty lines.
Examples of incorrect code for this rule with the default { "max": 2 }
option:
<div id="foo"></div>
<div id="bar"></div>
Examples of correct code for this rule with the default { "max": 2 }
option:
<div id="foo"></div>
<div id="bar"></div>