1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-19 20:02:10 +00:00
seirdy.one/linter-configs/budget.json
Rohan Kumar 7a3aee1539
Streamline lint configuration
- Add lint using local installation of the Nu HTML Validator and some
  jq-based filtering of false positives
- Move linter configs to directory, to de-clutter the repo
2022-05-11 10:01:22 -07:00

60 lines
848 B
JSON

[
{
"options": {
"firstPartyHostnames": [
"seirdy.one",
"staging.seirdy.one"
]
},
"timings": [
{
"metric": "total-blocking-time",
"budget": 0
},
{
"metric": "cumulative-layout-shift",
"budget": 0
},
{
"metric": "interactive",
"budget": 3200
},
{
"metric": "largest-contentful-paint",
"budget": 3200
}
],
"resourceSizes": [
{
"resourceType": "total",
"budget": 128
},
{
"resourceType": "document",
"budget": 60
},
{
"resourceType": "image",
"budget": 35
},
{
"resourceType": "stylesheet",
"budget": 1
}
],
"resourceCounts": [
{
"resourceType": "script",
"budget": 0
},
{
"resourceType": "font",
"budget": 0
},
{
"resourceType": "third-party",
"budget": 0
}
]
}
]