[export] incorrect report on `export * as`
See original GitHub issue// processors/remark.js
export const remark = {}
// processors/index.js
export * as processors from './remark'
// rules/remark.js
export const remark = {}
// rules/index.js
import { remark } from './remark'
export { remark }
export const rules = { remark }
// index.js
export * from './processors'
export * from './rules'
Unexpected error:
Multiple exports of name 'remark'
But processors
doesn’t export remark
at all.
Workaround:
// processors/index.js
import { remark } from './remark'
export const processors = { remark }
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:6 (1 by maintainers)
Top Results From Across the Web
Troubleshoot problems running or exporting a report
Check for report timeout · Use a shorter date range. · Use fewer dimensions and metrics. · Use more granular filters. · If...
Read more >FIX: Incorrect page numbers are displayed when you export a ...
In this scenario, the report displays incorrect page numbers and the page number is reset unexpectedly, even when there is no group change....
Read more >Report formatting does not export correctly
When exporting a report, the formatting may not export correctly. This is due to the advanced reporting ... Exported reports shows incorrect format....
Read more >Export data to excel is showing incorrect data
Hi, I am trying to export data from my tables and it is incorrect. the data export is from a completely different table....
Read more >When reports are exported to Excel, the format of the numbers ...
Hi nolien,. Let me help you correctly export your report to excel. This might have something to do with the setup of your...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@jsg2021 Here you are: https://github.com/JounQin/test/tree/eslint-plugin-import
Simply run:
yarn lint
Having the same “Multiple exports” false positive issue with a slightly different situation:
(where
remark
is not even exported from rules/index.js)