eslint / typescript-eslint-parser

An ESLint custom parser which leverages TypeScript ESTree to allow for ESLint to lint TypeScript source code.
Other
915 stars 92 forks source link

Multiple super classes got stripped #493

Closed ikatyang closed 6 years ago

ikatyang commented 6 years ago

What version of TypeScript are you using? 2.9.1

What version of typescript-eslint-parser are you using? 16.0.0

What code were you trying to parse?

class X extends A, B {}

What did you expect to happen? An error.

What happened? Multiple super classes got stripped.

class X extends A {}