gajus/eslint-plugin-canonical

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

Open

#36 opened on Aug 8, 2024

View on GitHub
 (1 comment) (0 reactions) (0 assignees)TypeScript (15 forks)github user discovery
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';

Contributor guide