Open rjurado01 opened 4 years ago
Y have this code:
a.ns-button.ns-button--primary.ns-button--lg.ns-button--rounded.ns-button--gradient.scrollactive-item(
Witch throws me this error: Line length exceeds the maximum of 80 chars, so I change to:
Line length exceeds the maximum of 80 chars
a(class=` ns-button ns-button--primary ns-button--lg ns-button--rounded ns-button--gradient scrollactive-item` )
But this throws me this error: Static attribute "class" must be written as class literal
Static attribute "class" must be written as class literal
How can I do it? maybe pug-lint should allows static attribute "class" when line length exceeds.
Y have this code:
Witch throws me this error:
Line length exceeds the maximum of 80 chars
, so I change to:But this throws me this error:
Static attribute "class" must be written as class literal
How can I do it? maybe pug-lint should allows static attribute "class" when line length exceeds.