Add KEYS.md for comprehensive OpenAPI key reference and update biome.json to disable explicit any type warnings

This commit is contained in:
Luke Hagar
2025-09-26 15:14:26 +00:00
parent 16b154098f
commit 912ef809bf
6 changed files with 707 additions and 3 deletions

View File

@@ -359,7 +359,7 @@ function sortResponseCodes(a: string, b: string): number {
const aNum = parseInt(a);
const bNum = parseInt(b);
if (!isNaN(aNum) && !isNaN(bNum)) {
if (!Number.isNaN(aNum) && !Number.isNaN(bNum)) {
return aNum - bNum;
}