1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-19 20:02:10 +00:00
seirdy.one/.hintrc
Rohan Kumar 38261d4ebe
Drop unnecessary x-ua-compatible header
Given that I use a proper doctype, the x-ua-compatible header is not
necessary. See https://hsivonen.fi/doctype/#ie8 for more details.
2021-01-10 22:12:23 -08:00

46 lines
736 B
Text

{
"connector": {
"name": "puppeteer",
"options": {
"browser": "Chromium",
"headless": true
}
},
"extends": [
"web-recommended"
],
"formatters": [
"codeframe"
],
"hints": {
"apple-touch-icons": "off",
"axe/aria": "off",
"axe/other": "error",
"compat-api/css": [
"error",
{
"ignore": [
"filter"
]
}
],
"compat-api/html": [
"error",
{
"ignore": [
"time",
"picture",
"meta[name=color-scheme]"
]
}
],
"doctype": "error",
"highest-available-document-mode": "off",
"http-compression": "error",
"https-only": "error",
"manifest-file-extension": "error",
"manifest-is-valid": "error",
"performance-budget": "error",
"ssllabs": "off"
}
}