gajus/eslint-plugin-canonical

[no-re-export] support config to disallow named re-export

Open

#36 opened on Aug 8, 2024

 (1 comment) (0 reactions) (0 assignees)TypeScript (15 forks)github user discovery
enhancementhelp wanted

Repository metrics

Stars
 (149 stars)
PR merge metrics
 (No merged PRs in 30d)

Description

options for no-re-export

[
   'error',
  {
    allowNamed: false, // default true for compatibility.
  }
]
// incorrect
export { A } from './A';

Contributor guide