-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.cursorrules
More file actions
63 lines (54 loc) · 1.25 KB
/
.cursorrules
File metadata and controls
63 lines (54 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# gitcommit message
- **Feat**: Implement new feature
- **Add**: Add asset files
- **Fix**: Fix bugs
- **Docs**: Add or update documentation
- **Style**: Styling work (no code logic changes)
- **Refactor**: Code refactoring (no functional changes)
- **Test**: Add or modify tests
- **Deploy**: Deployment-related changes
- **Conf**: Build or environment configuration
- **Chore**: Miscellaneous tasks
Write the first line of the commit message in under 30 characters, and add detailed information from the next line.
```example1
[feat] new feature
- new feature description
- new feature description
- new feature description
```
```example2
[fix] fix bug
- fix bug description
- fix bug description
- fix bug description
```
```example3
[refactor] refactor code
- refactor code description
- refactor code description
- refactor code description
```
```example4
[test] add test
- add test description
- add test description
- add test description
```
```example5
[docs] add docs
- add docs description
- add docs description
- add docs description
```
```example6
[style] style code
- style code description
- style code description
- style code description
```
```example7
[chore] chore
- chore description
- chore description
- chore description
```