1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-22 20:44:15 +00:00

Add checker for html

This commit is contained in:
Chocobo1 2023-03-28 17:50:37 +08:00
parent b922441a7c
commit 679e592a5c
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
2 changed files with 19 additions and 1 deletions

View File

@ -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"
}
}

View File

@ -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": "*",