mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
0c64c5867b
Compress with brotli ahead of time in CI, just like we do with zopfli for gzip_static Update hintrc to check for brotli compression. Update lighthouse config to throttle CPU some more since brotli decompression can be heavier.
44 lines
671 B
Text
44 lines
671 B
Text
{
|
|
"connector": {
|
|
"name": "puppeteer",
|
|
"options": {
|
|
"browser": "Chromium",
|
|
"headless": true
|
|
}
|
|
},
|
|
"extends": [
|
|
"web-recommended"
|
|
],
|
|
"formatters": [
|
|
"codeframe"
|
|
],
|
|
"hints": {
|
|
"apple-touch-icons": "off",
|
|
"axe/other": "error",
|
|
"compat-api/css": [
|
|
"error",
|
|
{
|
|
"ignore": [
|
|
"filter"
|
|
]
|
|
}
|
|
],
|
|
"compat-api/html": [
|
|
"error",
|
|
{
|
|
"ignore": [
|
|
"time",
|
|
"picture",
|
|
"meta[name=color-scheme]"
|
|
]
|
|
}
|
|
],
|
|
"doctype": "error",
|
|
"http-compression": "error",
|
|
"https-only": "error",
|
|
"manifest-file-extension": "error",
|
|
"manifest-is-valid": "error",
|
|
"performance-budget": "error",
|
|
"ssllabs": "off"
|
|
}
|
|
}
|