noInstanceMethodWithoutThisMethod '{{methodName}}' does not use 'this' and creates unnecessary metatable overhead in roblox-ts. Convert it to a standalone function for better performance.small-rules/no-instance-methods-without-thisDetect instance methods that do not use 'this' and suggest converting them to standalone functions for better performance in roblox-ts.
noInstanceMethodWithoutThisMethod '{{methodName}}' does not use 'this' and creates unnecessary metatable overhead in roblox-ts. Convert it to a standalone function for better performance.This rule accepts one options object after the severity.
class MyClass { private notifyChanges(value: number): void { console.log(value); }}class MyClass { static helper(): void { console.log("static"); }}