no-generic-single-export-module
Disallow generic module stems when one runtime export already names the responsibility.
Why
A generic filename hides the sole exported responsibility and makes navigation less descriptive.
Fix
Choose a responsibility-bearing module name or colocate the export with its domain.
Examples
export function parseOrder() { return {};}export function parseOrder() { return {};}