Use clear, consistent terminology in all error messages and user-facing text. Avoid technical jargon that might confuse users, and maintain consistency in language patterns across the codebase:
Use clear, consistent terminology in all error messages and user-facing text. Avoid technical jargon that might confuse users, and maintain consistency in language patterns across the codebase:
// Preferred
"Default imports are not allowed in a deferred import."
// Avoid
"Default imports aren't allowed for deferred imports."
Consistent terminology improves readability and maintains a professional style throughout the codebase.
Enter the URL of a public GitHub repository