This commit is contained in:
Benjamin 2025-06-12 17:33:39 -04:00 committed by Valentyne Stigloher
parent 9f089578fe
commit 056d921c4b

View File

@ -1,7 +1,9 @@
import fs from 'node:fs/promises';
import { deepKeys } from 'dot-prop';
import Suml from 'suml';
/* Commented out due to being unused (prevents lint error)
import { deepKeys as _deepKeys } from 'dot-prop';
import _Suml from 'suml';
*/
import type { Config } from '~/locale/config.ts';
import type { Translations } from '~/locale/translations.ts';
@ -9,7 +11,9 @@ import { loadSuml } from '~/server/loader.ts';
import { rootDir } from '~/server/paths.ts';
import { DictNode, parse } from '~/server/sumlAst.ts';
import type { Node } from '~/server/sumlAst.ts';
import { deepGet, deepListKeys, deepSet } from '~/src/helpers.ts';
import { deepListKeys } from '~/src/helpers.ts';
// Commented out due to being unused (prevents linting error)
// import { deepSet, deepGet } from '~/src/helpers.ts';
import { listMissingTranslations } from '~/src/missingTranslations.ts';
const loadDocument = async (name: string) => {