htmllint-custom-tag-style
v3.0.8
Published
htmllint plugin to check custom tag naming.
Downloads
20
Maintainers
Readme
htmllint-custom-tag-style
htmllint plugin to check custom tag naming.
yarn add -D htmllint-custom-tag-style
.htmllintrc
{
"plugins": [
"htmllint-custom-tag-style"
],
"tag-name-match": true, // each tag should be closed
"custom-tag-style": "/^app-prefix-.+$/", // custom tag only pattern
"custom-tag-ignore-regexp": "/^%.*$/" // ignore ejs stuff
}