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
Currently the following line will fail with an Unnecessary 'div' tag error.
div(data-type="text").class
If it were written as (data-type="text").class, pug will fail to render and throw an error.
Test
it('should not report necessary div tags with classes after attributes',function(){assert.equal(linter.checkString('div(data-type="text").class').length,0);});
The text was updated successfully, but these errors were encountered:
Currently the following line will fail with an
Unnecessary 'div' tag
error.div(data-type="text").class
If it were written as
(data-type="text").class
, pug will fail to render and throw an error.Test
The text was updated successfully, but these errors were encountered: