diff options
| author | Fuwn <[email protected]> | 2026-03-01 15:55:01 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-03-01 15:55:01 -0800 |
| commit | ea779b51e0a01ef282a4b868048995abb76f21a9 (patch) | |
| tree | 790dfc94ccdf883348e3af6cb9ef46467af9b41d | |
| parent | chore(biome): re-enable noUselessEmptyExport rule (diff) | |
| download | due.moe-ea779b51e0a01ef282a4b868048995abb76f21a9.tar.xz due.moe-ea779b51e0a01ef282a4b868048995abb76f21a9.zip | |
chore(biome): re-enable noInvalidUseBeforeDeclaration rule
| -rw-r--r-- | biome.json | 3 | ||||
| -rw-r--r-- | src/app.d.ts | 2 | ||||
| -rw-r--r-- | src/app.html | 2 |
3 files changed, 1 insertions, 6 deletions
@@ -27,9 +27,6 @@ "useAltText": "off", "useGenericFontNames": "off" }, - "correctness": { - "noInvalidUseBeforeDeclaration": "off" - }, "suspicious": { "noDoubleEquals": "off", "noDuplicateCase": "off", diff --git a/src/app.d.ts b/src/app.d.ts index 1598a90b..0c87d224 100644 --- a/src/app.d.ts +++ b/src/app.d.ts @@ -19,5 +19,3 @@ declare global { track: (event_name: string, event_data?: Record<string, unknown>) => void; }; } - -export {}; diff --git a/src/app.html b/src/app.html index 85f89c52..13dc8567 100644 --- a/src/app.html +++ b/src/app.html @@ -107,7 +107,7 @@ </script> <script> - var global = global || window; + var global = window; aoButa = ''; |