VBC-909: empty-interface-ts
warningCategory: clean-code
Analysis: AST
Tags: clean-code typescript
What it reports
Empty interface detected. If intentional, add a comment; otherwise, remove it.
Flagged
ts
interface Options {}Not flagged
ts
interface Options extends BaseOptions {}ts
interface Options { retries: number; }AST check
- Type:
empty-interface