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
fixture: hbs rules to allow template class name formation and some typos (#2481)
Now if you run with `npm run test` locally, we've got some errors of
page checkings:
1. layouts/partials/footer.hbs: line 3, col 20, value must match the
format: dash
=> This problem is caused by the special formation in {{...}}, because
this is an hbs file, just like Angular or some template pages, we
SHOULDN'T check its variable name, so ignore it by setting:
id-class-ignore-regex": "{{.*?}}" in the '.htmllintrc'.
2. layouts/partials/footer.hbs: line 3, col 1, tag is not closed
=> Add spaces between some tag names.
3. layouts/partials/navigation.hbs: line 6, col 11, tag is not closed
=> Add spaces between some tag names.
4. layouts/partials/header.hbs: line 10, col 9, tag is not closed
=> Add spaces between some tag names.
0 commit comments