store paths are now arrays, because '.' needed to be a valid path ident. more quoting crap. font is done! well.. it's something. probably not 'done'

This commit is contained in:
Dustin Swan 2026-02-23 22:51:16 -07:00
parent 515ad7fc9c
commit 6fe94ddfb2
No known key found for this signature in database
GPG key ID: 30D46587E2100467
6 changed files with 5859 additions and 5537 deletions

View file

@ -309,5 +309,5 @@ function prettyPrintPattern(pattern: Pattern): string {
}
function needsQuotes(key: string): boolean {
return !/^[a-zA-Z_][a-zA-Z0-9_]*$/.test(key);
return key === '_' || !/^[a-zA-Z_][a-zA-Z0-9_]*$/.test(key);
}