diff --git a/eslint.config.mjs b/eslint.config.mjs index 0a5e344..c537c11 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -63,7 +63,8 @@ export default [ ], // Prettier plugin to apply formatting rules 'prettier/prettier': 'error', // This tells ESLint to show Prettier errors as ESLint errors - '@typescript-eslint/no-empty-object-type': 'none', + '@typescript-eslint/no-empty-object-type': 'off', + '@typescript-eslint/no-empty-interface': 'off', }, settings: { // Spread Prettier config to disable conflicting ESLint rules diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d90cb86..6cd5ce4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5109,7 +5109,7 @@ packages: hasBin: true dependencies: caniuse-lite: 1.0.30001664 - electron-to-chromium: 1.5.29 + electron-to-chromium: 1.5.30 node-releases: 2.0.18 update-browserslist-db: 1.1.1(browserslist@4.24.0) @@ -6072,8 +6072,8 @@ packages: jake: 10.9.2 dev: true - /electron-to-chromium@1.5.29: - resolution: {integrity: sha512-PF8n2AlIhCKXQ+gTpiJi0VhcHDb69kYX4MtCiivctc2QD3XuNZ/XIOlbGzt7WAjjEev0TtaH6Cu3arZExm5DOw==} + /electron-to-chromium@1.5.30: + resolution: {integrity: sha512-sXI35EBN4lYxzc/pIGorlymYNzDBOqkSlVRe6MkgBsW/hW1tpC/HDJ2fjG7XnjakzfLEuvdmux0Mjs6jHq4UOA==} /elliptic@6.5.7: resolution: {integrity: sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q==} diff --git a/src/types/Config.ts b/src/types/Config.ts index 7537f5c..23cc631 100644 --- a/src/types/Config.ts +++ b/src/types/Config.ts @@ -5,7 +5,7 @@ export interface Env { } export interface Constants { - // ... + //... } export interface Config extends Env, Constants {}