@@ -18,7 +18,7 @@ The multiform-validator is a powerful Multilanguage library for validating form
18
18
- Commit your changes and push them to the forked repository:
19
19
```
20
20
git add .
21
- git commit -m "Concise description of the changes"
21
+ git commit -m "feat: concise description of the changes"
22
22
git push origin my-feature
23
23
```
24
24
@@ -27,36 +27,36 @@ The multiform-validator is a powerful Multilanguage library for validating form
27
27
28
28
## Contribution Guidelines
29
29
30
- feat: Adds a new feature to the project. For example:
30
+ feat: adds a new feature to the project. For example:
31
31
32
- feat: Add controller for user management
33
- fix: Fixes an existing bug or issue. For example:
32
+ feat: add controller for user management
33
+ fix: fixes an existing bug or issue. For example:
34
34
35
- fix: Fix validation error in the controller
36
- refactor: Restructures existing code without changing its functionality. For example:
35
+ fix: fix validation error in the controller
36
+ refactor: restructures existing code without changing its functionality. For example:
37
37
38
- refactor: Rearrange methods in the controller for better readability
39
- docs: Updates the project's documentation. For example:
38
+ refactor: rearrange methods in the controller for better readability
39
+ docs: updates the project's documentation. For example:
40
40
41
- docs: Update documentation for the user controller
42
- style: Makes code style-related changes, such as formatting, indentation, etc. For example:
41
+ docs: update documentation for the user controller
42
+ style: makes code style-related changes, such as formatting, indentation, etc. For example:
43
43
44
- style: Format code in the controller according to project guidelines
45
- test: Adds or modifies tests in the project. For example:
44
+ style: format code in the controller according to project guidelines
45
+ test: adds or modifies tests in the project. For example:
46
46
47
- test: Add tests for the user controller
48
- chore: Performs maintenance tasks or other activities not directly related to code. For example:
47
+ test: add tests for the user controller
48
+ chore: performs maintenance tasks or other activities not directly related to code. For example:
49
49
50
- chore: Update project dependencies for compatibility with new versions
51
- perf: Makes performance improvements in the code. For example:
50
+ chore: update project dependencies for compatibility with new versions
51
+ perf: makes performance improvements in the code. For example:
52
52
53
- perf: Optimize data query in the controller
54
- revert: Reverts a previous change. For example:
53
+ perf: optimize data query in the controller
54
+ revert: reverts a previous change. For example:
55
55
56
- revert: Revert changes in the controller due to implementation issues
57
- ci: Makes modifications related to continuous integration (CI) and deployment. For example:
56
+ revert: revert changes in the controller due to implementation issues
57
+ ci: makes modifications related to continuous integration (CI) and deployment. For example:
58
58
59
- ci: Configure CI pipeline to automatically test the controller
59
+ ci: configure CI pipeline to automatically test the controller
60
60
61
61
- Follow the coding standards of the language you're contributing to (JavaScript, TypeScript, Java, etc.).
62
62
- Keep the code clean and readable.
0 commit comments