pugjs / pug-lint

An unopinionated and configurable linter and style checker for Pug
ISC License
228 stars 51 forks source link

Tags with multiple attributes #125

Open geersch opened 7 years ago

geersch commented 7 years ago

Is it possible to add a rule to lint for tags with multiple attributes?

For example:

div(id="foo").bar(name="foo")

should be written as

div(id="foo" name="foo").bar