You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This document contains guidelines and best practices for using Claude Code with this project.
4
+
5
+
## Git Commit Conventions
6
+
7
+
This project follows the [Conventional Commits](https://www.conventionalcommits.org/) specification for commit messages. When making commits, please use the following format:
8
+
9
+
```
10
+
<type>[optional scope]: <description>
11
+
12
+
[optional body]
13
+
14
+
[optional footer(s)]
15
+
```
16
+
17
+
### Types
18
+
19
+
Common types include:
20
+
21
+
-`feat`: A new feature
22
+
-`fix`: A bug fix
23
+
-`docs`: Documentation only changes
24
+
-`style`: Changes that don't affect the meaning of the code (whitespace, formatting, etc.)
25
+
-`refactor`: A code change that neither fixes a bug nor adds a feature
26
+
-`perf`: A code change that improves performance
27
+
-`test`: Adding missing tests or correcting existing tests
28
+
-`chore`: Changes to the build process or auxiliary tools and libraries
29
+
30
+
### Examples
31
+
32
+
```
33
+
fix: update help.send.app URLs to support.send.app
34
+
35
+
Updated outdated help.send.app URLs to the new support.send.app domain with appropriate articles path.
36
+
```
37
+
38
+
```
39
+
feat(auth): add new passkey authentication flow
40
+
41
+
Added a new authentication flow using passkeys instead of traditional passwords.
42
+
```
43
+
44
+
Always include the Claude signature at the end of your commit messages:
45
+
46
+
```
47
+
🤖 Generated with [Claude Code](https://claude.ai/code)
0 commit comments