biome format --write

This commit is contained in:
Henry Jameson 2026-01-06 16:22:52 +02:00
commit 9262e803ec
415 changed files with 54076 additions and 17419 deletions

View file

@ -1,5 +1,5 @@
export const CONFIG_MIGRATION = 1
import { v4 as uuidv4 } from 'uuid';
import { v4 as uuidv4 } from 'uuid'
// for future use
/*
@ -20,7 +20,7 @@ export const declarations = [
migrationNum: 1,
description: 'Mute filters, wordfilter/regexp/etc',
valueType: 'complex',
migration (serverside, rootState) {
migration(serverside, rootState) {
rootState.config.muteWords.forEach((word, order) => {
const uniqueId = uuidv4()
@ -33,10 +33,10 @@ export const declarations = [
enabled: true,
expires: null,
hide: false,
order
}
order,
},
})
})
}
}
},
},
]