You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When vue/max-attributes-per-line reformats the line, the attributes end up completely unindented:
a(href="link" @click="click")
becomes:
a(
href="link"
@click="click")
when ideally it should be:
a(
href="link"
@click="click"
)
I'm not sure if this plugin alone is enough to lint things like indentation for the pug templates in SFCs? I know I can use prettier/plugin-pug with prettier, but I would prefer to avoid prettier altogether and rely on just eslint.
gilles-crealp, alex-red, inctec-leo, satezmedia, icebob and 1 more