Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 810 Bytes

File metadata and controls

21 lines (17 loc) · 810 Bytes
description Coding standards and conventions for the project, including JavaScript/TypeScript, CSS, and component structure.
applyTo **

🧑‍💻 Coding Standards & Conventions

Coding Implementations

  1. End every statement with a semicolon.
  2. Use single quotes for all string literals.
  3. Implement components as functions, not classes.
  4. Use arrow functions for all callbacks.
  5. Organize code by feature or module, keeping related files together.
  6. Write clear and concise JSDoc/TSDoc comments for functions, components, and modules.

Code Guidelines