style: auto-fix linting issues

This commit is contained in:
binimum 2026-04-05 18:51:13 +00:00 committed by github-actions[bot]
parent f0748421d3
commit 7f2e0f2f88
4 changed files with 32 additions and 62 deletions

View file

@ -12,10 +12,7 @@
"explicit": true,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS",
"HIRES_LOSSLESS"
]
"tags": ["LOSSLESS", "HIRES_LOSSLESS"]
}
},
{
@ -31,9 +28,7 @@
"explicit": true,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS"
]
"tags": ["LOSSLESS"]
}
},
{
@ -49,9 +44,7 @@
"explicit": true,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS"
]
"tags": ["LOSSLESS"]
}
},
{
@ -67,9 +60,7 @@
"explicit": true,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS"
]
"tags": ["LOSSLESS"]
}
},
{
@ -85,9 +76,7 @@
"explicit": true,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS"
]
"tags": ["LOSSLESS"]
}
},
{
@ -103,10 +92,7 @@
"explicit": true,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS",
"HIRES_LOSSLESS"
]
"tags": ["LOSSLESS", "HIRES_LOSSLESS"]
}
},
{
@ -122,10 +108,7 @@
"explicit": true,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS",
"HIRES_LOSSLESS"
]
"tags": ["LOSSLESS", "HIRES_LOSSLESS"]
}
},
{
@ -141,10 +124,7 @@
"explicit": true,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS",
"HIRES_LOSSLESS"
]
"tags": ["LOSSLESS", "HIRES_LOSSLESS"]
}
},
{
@ -160,9 +140,7 @@
"explicit": false,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS"
]
"tags": ["LOSSLESS"]
}
},
{
@ -178,10 +156,7 @@
"explicit": true,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS",
"HIRES_LOSSLESS"
]
"tags": ["LOSSLESS", "HIRES_LOSSLESS"]
}
},
{
@ -197,9 +172,7 @@
"explicit": true,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS"
]
"tags": ["LOSSLESS"]
}
},
{
@ -215,9 +188,7 @@
"explicit": true,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS"
]
"tags": ["LOSSLESS"]
}
},
{
@ -233,9 +204,7 @@
"explicit": true,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS"
]
"tags": ["LOSSLESS"]
}
},
{
@ -251,9 +220,7 @@
"explicit": true,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS"
]
"tags": ["LOSSLESS"]
}
},
{
@ -269,9 +236,7 @@
"explicit": true,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS"
]
"tags": ["LOSSLESS"]
}
},
{
@ -287,9 +252,7 @@
"explicit": true,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS"
]
"tags": ["LOSSLESS"]
}
},
{
@ -305,9 +268,7 @@
"explicit": true,
"audioQuality": "LOSSLESS",
"mediaMetadata": {
"tags": [
"LOSSLESS"
]
"tags": ["LOSSLESS"]
}
}
]
]

View file

@ -44,4 +44,4 @@
"label": "April Fools '26",
"date": "2026-04-01"
}
]
]

View file

@ -1 +1 @@
[]
[]

View file

@ -83,10 +83,19 @@ export default defineConfig((_options) => {
purgecss({
variables: false, // DO NOT REMOVE UNUSED VARIABLES (breaks web components like am-lyrics)
safelist: {
standard: [/^am-lyrics/, /^lyplus-/, 'sidepanel', 'side-panel', 'active', 'show', /^data-/, /^modal-/],
standard: [
/^am-lyrics/,
/^lyplus-/,
'sidepanel',
'side-panel',
'active',
'show',
/^data-/,
/^modal-/,
],
deep: [/^am-lyrics/],
greedy: [/^lyplus-/, /sidepanel/, /side-panel/]
}
greedy: [/^lyplus-/, /sidepanel/, /side-panel/],
},
}),
authGatePlugin(),
uploadPlugin(),