mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-01 11:42:06 +00:00
[TS] Force explicit override & property access (#1006)
Enables TypeScript rules that improve code legibility.
- Requires `override` keyword
- Prevent indexed properties from being accessed with dot notation
```ts
const obj: Record<string, unknown> = {}
// Prefer
obj["property"]
// Over
obj.property
```
This commit is contained in:
@@ -36,7 +36,7 @@ export class KnobWidget extends BaseWidget implements IKnobWidget {
|
||||
}
|
||||
}
|
||||
|
||||
get height(): number {
|
||||
override get height(): number {
|
||||
return this.computedHeight || super.height
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user