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 4d7625227b
IndieWeb: gather WebWentions with static-webmention
Update the Makefile to download the old version of the site, run
static-webmentions, and collect the WebMentions to send in a json file
saved as a build artifact.

Don't send these automatically; just save them for now. Until I work out
a solution to save sent WebMentions and avoid sending duplicates, I'll
keep the sending of WebMentions manual.

For some reason this caused webhint's axe/aria test to error out with a
"Protocol error" so I disabled it. Axe tests are covered by Lighthouse
anyway.
2021-01-09 21:48:34 -08:00

45 lines
692 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",
"http-compression": "error",
"https-only": "error",
"manifest-file-extension": "error",
"manifest-is-valid": "error",
"performance-budget": "error",
"ssllabs": "off"
}
}