We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: