Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CONTRIBUTING.md actualization #8

Merged
merged 1 commit into from
Jul 9, 2024
Merged
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
19 changes: 12 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# Contributing
Rules of contributing to our project.
1. If you want to add your own feature or fix something in our code, please create your own branch to do it.
2. Please avoid verbs in commits' names ("project initialization" instead of "initialize project" or "initialized project")
3. Once your branch is complete, you can make a pull request and wait for it to be reviewed.
4. Description of pull request is required to be written.
5. Your commits and pull requests must be named and described in English.
6. Your naming of commits and pull requests must be logical and reasonable. Use conventional commits, please.
7. Please use "git commit -s" option.
8. If you are in doubt what to do, it's better to text developers.
2. Enable precommit hooks using
```shell
git config --local core.hooksPath .githooks/
```
3. Use conventional commits, please.
4. Please avoid verbs in commits' names ("project initialization" instead of "initialize project" or "initialized project")
5. Once your branch is complete, you can make a pull request and wait for it to be reviewed.
6. Description of pull request is required to be written.
7. Your commits and pull requests must be named and described in English.
8. Your naming of commits and pull requests must be logical and reasonable.
9. Please use "git commit -s" option.
10. If you are in doubt what to do, it's better to text developers.

Loading