fix trunk check

This commit is contained in:
Georges-Antoine Assi
2026-02-07 22:07:15 -05:00
parent 3e86e55994
commit dc685911f0
4 changed files with 127 additions and 325 deletions

View File

@@ -25,7 +25,7 @@ lint:
- dotenv-linter@4.0.0
- hadolint@2.14.0
- markdownlint@0.47.0
- eslint@10.0.0
- eslint@9.34.0
- actionlint@1.7.10
- bandit@1.9.3
- black@26.1.0

File diff suppressed because it is too large Load Diff

View File

@@ -75,6 +75,6 @@
"vue-tsc": "^2.2.8"
},
"engines": {
"node": "18"
"node": ">18"
}
}

View File

@@ -673,13 +673,6 @@ export const romStatusMap: Record<
hidden: { emoji: "👻", text: "Hidden", i18nKey: "rom.status-hidden" },
};
/**
* Inverse map of ROM statuses from text to status key.
*/
const inverseRomStatusMap = Object.fromEntries(
Object.entries(romStatusMap).map(([key, value]) => [value.text, key]),
) as Record<string, PlayingStatus>;
/**
* Get the emoji for a given ROM status.
*