Skip to content

Commit

Permalink
style(biome): format files
Browse files Browse the repository at this point in the history
  • Loading branch information
Mara-Li committed Jun 16, 2024
1 parent 53696cc commit 0f59e97
Show file tree
Hide file tree
Showing 27 changed files with 1,796 additions and 1,324 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"restart": "pm2 restart dicelette",
"delete": "pm2 delete dicelette",
"dev": "tsx watch src/index.ts",
"lint:fix": "pnpm biome lint --write src/",
"lint:fix": "pnpm biome format --write src/",
"db": "tsx db-management.ts",
"release": "commit-and-tag-version",
"test": "vitest run",
Expand Down
10 changes: 5 additions & 5 deletions src/@types/i18next.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { resources } from "@localization";

declare module "i18next" {
interface CustomTypeOptions {
readonly resources: typeof resources["en"];
readonly returnNull: false
}
}
interface CustomTypeOptions {
readonly resources: (typeof resources)["en"];
readonly returnNull: false;
}
}
Loading

0 comments on commit 0f59e97

Please sign in to comment.