1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-19 11:52:11 +00:00
seirdy.one/linter-configs/htmlvalidate.json
2024-04-22 01:17:03 -04:00

40 lines
524 B
JSON

{
"extends": [
"html-validate:recommended",
"html-validate:standard",
"html-validate:a11y",
"html-validate:document"
],
"rules": {
"attribute-empty-style": [
"error",
{
"style": "empty"
}
],
"attribute-boolean-style": [
"error",
{
"style": "empty"
}
],
"void-style": [
"error",
{
"style": "selfclosing"
}
],
"require-sri": [
"off"
],
"prefer-button": [
"off"
],
"no-trailing-whitespace": [
"off"
],
"attribute-misuse": [
"off"
]
}
}