mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
c0904f3b32
- Replace achecker flags with a config file - Bring back webhint - Amend check-whole-site so that it will deploy to staging if all checks pass, and then run webhint on every staging page.
87 lines
1.4 KiB
Text
87 lines
1.4 KiB
Text
{
|
|
"connector": {
|
|
"name": "puppeteer",
|
|
"options": {
|
|
"browser": "Chromium",
|
|
"headless": true
|
|
}
|
|
},
|
|
"extends": [
|
|
"web-recommended"
|
|
],
|
|
"formatters": [
|
|
"codeframe"
|
|
],
|
|
"hints": {
|
|
"apple-touch-icons": "off",
|
|
"axe/aria": "off",
|
|
"compat-api/css": [
|
|
"error",
|
|
{
|
|
"ignore": [
|
|
"filter",
|
|
"contain",
|
|
"image-rendering: pixelated",
|
|
"contain-intrinsic-size",
|
|
"content-visibility",
|
|
"text-size-adjust"
|
|
]
|
|
}
|
|
],
|
|
"compat-api/html": [
|
|
"error",
|
|
{
|
|
"ignore": [
|
|
"time",
|
|
"picture",
|
|
"meta[name=color-scheme]",
|
|
"meta[name=theme-color]",
|
|
"img[decoding]",
|
|
"a[referrerpolicy]",
|
|
"code[translate]",
|
|
"a[translate]",
|
|
"span[translate]",
|
|
"samp[translate]"
|
|
]
|
|
}
|
|
],
|
|
"doctype": "error",
|
|
"http-cache": [
|
|
"error",
|
|
{
|
|
"maxAgeTarget": 600
|
|
}
|
|
],
|
|
"http-compression": "off",
|
|
"https-only": "error",
|
|
"manifest-file-extension": "error",
|
|
"manifest-is-valid": "error",
|
|
"meta-viewport": "error",
|
|
"no-bom": "error",
|
|
"no-p3p": "error",
|
|
"html-checker": "off",
|
|
"content-type": ["error", {
|
|
".*\\.svg": "image/svg+xml"
|
|
}],
|
|
"no-html-only-headers": [ "warning",
|
|
{
|
|
"ignore": ["content-security-policy"]
|
|
}],
|
|
"performance-budget": [
|
|
"error",
|
|
{
|
|
"connectionType": "3GSlow",
|
|
"loadTime": 10
|
|
}
|
|
],
|
|
"stylesheet-limits": [
|
|
"error",
|
|
{
|
|
"maxRules": 100,
|
|
"maxSheets": 2,
|
|
"maxImports": 0
|
|
}
|
|
],
|
|
"ssllabs": "off"
|
|
}
|
|
}
|