Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
ec33913
Initial plan
Copilot Oct 11, 2025
9e34189
docs(contributing): add commit message convention guide
Copilot Oct 11, 2025
e1ac5ae
docs(meta): document correct format for commit 5827b78
Copilot Oct 11, 2025
d2e9863
chore: update project documentation structure
Copilot Oct 11, 2025
d5ed7ee
chore: update project documentation structure
Copilot Oct 11, 2025
e57e5dd
chore: initialize documentation structure
Copilot Oct 11, 2025
9b835ed
chore: update project documentation structure
Copilot Oct 11, 2025
82c8c48
chore: update project documentation structure
Copilot Oct 11, 2025
9c1cd5f
fix(ci): update Node.js version to 18 in label checker workflow
Copilot Oct 11, 2025
b642d24
fix(ci): update Node.js version to 18 in label checker workflow
Copilot Oct 11, 2025
4419abb
chore: initialize documentation structure
Copilot Oct 11, 2025
e744075
chore: update project documentation structure
Copilot Oct 11, 2025
f2ec0f1
chore: update project documentation structure
Copilot Oct 11, 2025
767812f
chore: initialize documentation structure
Copilot Oct 11, 2025
14504c0
chore: update project documentation structure
Copilot Oct 11, 2025
2002713
chore: update project documentation structure
Copilot Oct 11, 2025
e4a1956
docs(contributing): add CI integration section to commit convention g…
Copilot Oct 11, 2025
b8ef4fa
chore: update project documentation structure
Copilot Oct 11, 2025
15f3f80
chore: update project documentation structure
Copilot Oct 11, 2025
240814b
chore: initialize documentation structure
Copilot Oct 11, 2025
16a3f8a
chore: update project documentation structure
Copilot Oct 11, 2025
3119917
chore: update project documentation structure
Copilot Oct 11, 2025
2edb0e2
chore: initialize documentation structure
Copilot Oct 11, 2025
089bb36
chore: update project documentation structure
Copilot Oct 11, 2025
08522d2
chore: update project documentation structure
Copilot Oct 11, 2025
6567470
chore: initialize documentation structure
Copilot Oct 11, 2025
0e43893
chore: update project documentation structure
Copilot Oct 11, 2025
3482430
chore: update project documentation structure
Copilot Oct 11, 2025
7714850
docs(contributing): add resources section to commit convention guide
Copilot Oct 11, 2025
98309b0
chore: update project documentation structure
Copilot Oct 11, 2025
15f91cb
chore: update project documentation structure
Copilot Oct 11, 2025
88c2f14
chore: initialize documentation structure
Copilot Oct 11, 2025
f03b315
chore: update project documentation structure
Copilot Oct 11, 2025
a9d5ea6
chore: update project documentation structure
Copilot Oct 11, 2025
fa5e6a7
chore: initialize documentation structure
Copilot Oct 11, 2025
c479c74
chore: update project documentation structure
Copilot Oct 11, 2025
c6546ac
chore: update project documentation structure
Copilot Oct 11, 2025
0c12ede
chore: initialize documentation structure
Copilot Oct 11, 2025
37ebc15
chore: update project documentation structure
Copilot Oct 11, 2025
42a233c
chore: update project documentation structure
Copilot Oct 11, 2025
f0884c5
chore: update project documentation structure
Copilot Oct 11, 2025
92351f1
chore: update project documentation structure
Copilot Oct 11, 2025
9137a87
chore: initialize documentation structure
Copilot Oct 11, 2025
f8fc099
chore: update project documentation structure
Copilot Oct 11, 2025
c807878
chore: update project documentation structure
Copilot Oct 11, 2025
cedb20f
chore: initialize documentation structure
Copilot Oct 11, 2025
6798fbf
chore: update project documentation structure
Copilot Oct 11, 2025
901bacf
chore: update project documentation structure
Copilot Oct 11, 2025
231571f
chore: initialize documentation structure
Copilot Oct 11, 2025
85069a7
chore: update project documentation structure
Copilot Oct 11, 2025
9e1cb9d
chore: update project documentation structure
Copilot Oct 11, 2025
1428f7a
docs(contributing): add note about required PR labels
Copilot Oct 11, 2025
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
41 changes: 41 additions & 0 deletions .github/COMMIT_CONVENTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Commit Message Convention

This project follows the [Conventional Commits](https://www.conventionalcommits.org/) specification.

## Format

```
type(scope): subject

body

footer
```

## Types

- `feat`: A new feature
- `fix`: A bug fix
- `docs`: Documentation changes
- `style`: Code style changes (formatting, missing semi-colons, etc.)
- `refactor`: Code refactoring
- `perf`: Performance improvements
- `test`: Adding or updating tests
- `build`: Changes to build system or dependencies
- `ci`: Changes to CI configuration
- `chore`: Other changes that don't modify src or test files

## Examples

```
docs(readme): add installation instructions

feat(auth): implement JWT authentication

fix(api): resolve null pointer exception in user endpoint
```

## Validation

All commits are validated using commitlint with the conventional config.
See `commitlint.config.js` for configuration details.
17 changes: 17 additions & 0 deletions .github/COMMIT_HISTORY_NOTE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Commit History Note

## Commit 5827b78

The commit `5827b78a46e74d34111955ec815b84c5a31fa34f` with message:
"Enhance README with project details and structure"

Should have followed conventional commit format as:
```
docs(readme): add comprehensive project documentation

Added detailed sections covering project overview, vision, goals, features,
tech stack, architecture, testing guidelines, and contribution workflow.
```

This note documents the correct format for reference. Future commits will follow
the conventional commit specification as enforced by commitlint.
Loading