gajus/eslint-plugin-canonical
View on GitHub[no-re-export] support config to disallow named re-export
Open
#36 opened on Aug 8, 2024
enhancementhelp wanted
Repository metrics
- Stars
- (150 stars)
- PR merge metrics
- (PR metrics pending)
Description
options for no-re-export
[
'error',
{
allowNamed: false, // default true for compatibility.
}
]
// incorrect
export { A } from './A';