Skip to content

Commit

Permalink
chore: added new rule
Browse files Browse the repository at this point in the history
  • Loading branch information
Onizuka-wl committed Sep 30, 2024
1 parent 278d9b7 commit e9caa8e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/types/Config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export interface Env {
}

export interface Constants {
// ...
//...
}

export interface Config extends Env, Constants {}

0 comments on commit e9caa8e

Please sign in to comment.