Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,11 @@ website/public/_pagefind/
# Claude Code
CLAUDE.md
.claude/settings.local.json

# Flutter web demos (generated via: cd examples && flutter build web)
# These are built and deployed separately, not committed to git
website/public/demos/

# Playwright
website/playwright-report/
website/test-results/
18 changes: 18 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,24 @@ melos run test:dart # Dart package tests
melos run test:coverage # With coverage report
```

## Git Conventions

**Branch naming** (Git Flow prefixes):
- `feat/` - New features
- `fix/` - Bug fixes
- `chore/` - Maintenance (deps, config, cleanup)
- `docs/` - Documentation changes
- `refactor/` - Code restructuring
- `test/` - Test additions/updates

**Commit messages** (Conventional Commits):
```
<type>(<scope>): <description>

type: feat, fix, chore, docs, refactor, test, ci
scope: mix, mix_generator, mix_annotations, mix_lint, examples, website
```

## Key Files

- `melos.yaml` - All script definitions
Expand Down
Loading
Loading