Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.8k
Closed
Description
Repro
/* eslint @typescript-eslint/adjacent-overload-signatures: error */classTest{statictest(){}untest(){}test(){}}
Expected Result
No warning, as despite having the same names they are unrelated. The firsttest
is a member oftypeof Test
, the secondtest
is a member ofTest
.
Actual Result
"All 'test' signatures should be adjacent."
Additional Info
Versions
package | version |
---|---|
@typescript-eslint/eslint-plugin | 1.1.1 |
@typescript-eslint/parser | 1.1.1 |
TypeScript | 3.2.4 |
ESLint | 5.12.1 |
node | 11.8.0 |
yarn | 1.14.0 |