Enable ESLint no-empty-object-type rule (#4354)

# Description of Changes
Enable ESLint [no-empty-object-type
rule](https://typescript-eslint.io/rules/no-empty-object-type/)
This commit is contained in:
James Brunton
2025-09-05 10:15:36 +00:00
committed by GitHub
parent d558bb5fac
commit 5caec41d96
3 changed files with 11 additions and 8 deletions
+4 -5
View File
@@ -1,7 +1,6 @@
// Base parameter interfaces for reusable patterns
export interface BaseParameters {
// Base interface that all tool parameters should extend
// Provides a foundation for adding common properties across all tools
// Examples of future additions: userId, sessionId, commonFlags, etc.
}
// Base interface that all tool parameters should extend
// Provides a foundation for adding common properties across all tools
// Examples of future additions: userId, sessionId, commonFlags, etc.
export type BaseParameters = object