feature-sliced / steiger

Universal file structure and project architecture linter
https://www.npmjs.com/package/steiger
MIT License
18 stars 0 forks source link

Implement `no-wildcard-exports` #5

Open illright opened 2 months ago

illright commented 2 months ago

Discourage wildcard exports export * from in public APIs.

Examples of code violating this rule:

// src/shared/ui/index.ts
export * from "./form";

Examples of code passing this rule:

// src/shared/ui/index.ts
export { Form, Field } from "./form";
export * as positions from "./tooltip-positions";