docs: add conventional commits guideline to AGENTS.md

This commit is contained in:
Bernhard Müller 2026-07-21 11:15:40 +02:00
parent 52c6641b3a
commit 9d3fba05d6

View File

@ -72,3 +72,32 @@ cd eeg_frontend && ng serve
- `@Profile("dev")` für simulierte EDA-Services
- EDA-Simulation: AT-Nummer endet mit "REJECT" → Ablehnung, "ERROR" → technischer Fehler
- Explizite `isEnabled()`-Überschreibung in `User.java` nötig (Lombok/Spring Security Konflikt)
## Conventional Commits
Ab jetzt werden [Conventional Commits](https://www.conventionalcommits.org/) verwendet:
```
<type>(<scope>): <description>
[optional body]
[optional footer]
```
### Typen
- `feat`: Neue Funktion
- `fix`: Bugfix
- `docs`: Dokumentation
- `style`: Formatierung (keine Code-Änderung)
- `refactor`: Code-Refactoring ohne Funktionsänderung
- `test`: Tests hinzugefügt/ergänzt
- `chore`: Build-Prozess, Abhängigkeiten, Konfiguration
### Beispiele
```
feat(iam): add user profile management
fix(mako): handle consent rejected event correctly
docs: update AGENTS.md with conventional commits
test(iam): add UserService unit tests
```