mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-31 04:38:04 -06:00
21 lines
457 B
JavaScript
21 lines
457 B
JavaScript
import { defineConfig } from "html-validate";
|
|
|
|
export default defineConfig({
|
|
extends: [
|
|
"html-validate:recommended"
|
|
],
|
|
rules: {
|
|
"input-missing-label": "error",
|
|
"long-title": "off",
|
|
"no-inline-style": "off",
|
|
"no-missing-references": "error",
|
|
"prefer-button": "off",
|
|
"require-sri": [
|
|
"error",
|
|
{
|
|
target: "crossorigin"
|
|
}
|
|
]
|
|
}
|
|
});
|