You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 19, 2019. It is now read-only.
What version of typescript-eslint-parser are you using?
12.0.0
What code were you trying to parse?
// unexected error: Multiple exports of name 'Foo'. (import/export)exportconstFoo=1;// unexected error: Multiple exports of name 'Foo'. (import/export)exporttypeFoo=1;
A custom rule will need to be created in the plugin to handle this. It would be fantastic if one of the people affected by this issue could contribute to it.
What version of TypeScript are you using?
2.6.1
What version of
typescript-eslint-parser
are you using?12.0.0
What code were you trying to parse?
The import/export rule is defined here: https://github.com/benmosher/eslint-plugin-import/blob/219a8d2e5af230f73b4754f725916843645889ff/docs/rules/export.md
Is this an issue to log here or with the eslint-plugin-import project?
We've decided to disable this ESLint rule as TypeScript also provides similar functionality anyway, but logging this just for others/reference.
For context, this pattern is common when using unionize:
The text was updated successfully, but these errors were encountered: