Browse Source

Add checker for html

adaptive-webui-19844
Chocobo1 2 years ago
parent
commit
679e592a5c
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 17
      src/webui/www/.htmlvalidate.json
  2. 3
      src/webui/www/package.json

17
src/webui/www/.htmlvalidate.json

@ -0,0 +1,17 @@
{
"extends": [
"html-validate:recommended"
],
"rules": {
"empty-heading": "off",
"long-title": "off",
"no-conditional-comment": "off",
"no-inline-style": "off",
"prefer-button": "off",
"prefer-tbody": "off",
"text-content": "off",
"void-style": "off",
"wcag/h63": "off",
"wcag/h71": "off"
}
}

3
src/webui/www/package.json

@ -7,11 +7,12 @@
}, },
"scripts": { "scripts": {
"format": "js-beautify private/*.html private/scripts/*.js private/views/*.html public/*.html public/scripts/*.js && prettier --write **.css", "format": "js-beautify private/*.html private/scripts/*.js private/views/*.html public/*.html public/scripts/*.js && prettier --write **.css",
"lint": "eslint private/*.html private/scripts/*.js private/views/*.html public/*.html public/scripts/*.js && stylelint **/*.css" "lint": "eslint private/*.html private/scripts/*.js private/views/*.html public/*.html public/scripts/*.js && stylelint **/*.css && html-validate private public"
}, },
"devDependencies": { "devDependencies": {
"eslint": "*", "eslint": "*",
"eslint-plugin-html": "*", "eslint-plugin-html": "*",
"html-validate": "*",
"js-beautify": "*", "js-beautify": "*",
"prettier": "*", "prettier": "*",
"stylelint": "*", "stylelint": "*",

Loading…
Cancel
Save