Keep codebase structure and import usage aligned with the intended architecture and boundaries.
src/features/shared/), rather than leaving them in a generic utils/ folder when the architecture expects otherwise.import type.Example:
// ✅ type-only import to avoid unused/runtime imports
import type React from 'react';
// ✅ do not import values you never use
// import { useToast } from '../contexts/ToastContext'; // remove if unused
Enter the URL of a public GitHub repository