**Repro** <!-- Include a ***minimal*** reproduction case. The more irrelevant code/config you give, the harder it is for us to investigate. --> ```JSON { "rules": { "@typescript-eslint/no-this-alias": ["error"] } } ``` ```TS class Foo { prop: string = ''; meth() { const {prop} = this; } } ``` **Expected Result** no reports **Actual Result** reports on the desctructuring