yomichan/.htmlvalidate.json
toasted-nutbread 9e83faa02c
Html lint (#1336)
* Move style rules

* Fix non-unique IDs

* Remove erroneous ids

* Add title

* Fix invalid closing tag

* Install html-validate

* Add .htmlvalidate.json

* Update HTML and styles

* Add test-lint-html

* Update test files

* Update test-lint-html/css commands to have more explicit targets
2021-01-30 20:44:54 -05:00

18 lines
408 B
JSON

{
"root": true,
"extends": [
"html-validate:recommended"
],
"rules": {
"element-required-attributes": "off",
"element-permitted-content": "off",
"text-content": "off",
"void-style": ["error", {"style": "omit"}],
"empty-heading": "off",
"wcag/h30": "off",
"no-inline-style": "off"
},
"elements": [
"html5"
]
}