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 337e34739f
Move link-checking and browserslist out of hintrc
- Use lychee for link-checking
- Move browserslist to own file
2020-12-14 22:12:52 -08:00

39 lines
537 B
Text

{
"extends": [
"web-recommended"
],
"connector": {
"name": "puppeteer",
"options": {
"headless": true,
"browser": "Chromium"
}
},
"hints": {
"axe/other": "error",
"https-only": "error",
"doctype": "error",
"performance-budget": "error",
"compat-api/css": "error",
"compat-api/html": [
"error",
{
"ignore": [
"time",
"picture"
]
}
],
"http-compression": [
"warning",
{
"html": {
"brotli": false
},
"resource": {
"brotli": false
}
}
]
}
}