<!-- If you have a problem with a specific rule, please begin your issue title with [rulename] to make it easier to search for. I.e. "[no-unused-vars] False positive when fooing the bar" --> **Repro** <!-- Include a minimal reproduction case. Please try to avoid code that isn't directly related to the bug, as it makes it harder to investigate. --> ```ts /* eslint @typescript-eslint/adjacent-overload-signatures: error */ class Test { static test() {} untest() {} test() {} } ``` **Expected Result** No warning, as despite having the same names they are unrelated. The first `test` is a member of `typeof Test`, the second `test` is a member of `Test`. **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` |