Version 1.0.0, last updated on 2024-11-18.
This document contains a general style guide for Angular projects.
There are specific style guides for:
- run Prettier on save and before committing
- use config from /.prettierrc.json
- use LF endings
- use UTF-8 (no BOM)
- KISS (Keep It Short & Simple)
- Be consistent
- DRY (Don't Repeat Yourself) in general, unless it's a reasonably small piece of code that changes slightly. Don't force abstraction in every case.
- @ToDo Add style guide for unit (JEST) and e2e (Cypress) tests.