Skip to content

Commit 60a8dfa

Browse files
committed
update CONTRIBUTING.md
1 parent 58c2906 commit 60a8dfa

File tree

1 file changed

+47
-93
lines changed

1 file changed

+47
-93
lines changed

CONTRIBUTING.md

Lines changed: 47 additions & 93 deletions
Original file line numberDiff line numberDiff line change
@@ -1,127 +1,81 @@
1-
# How to contribute
1+
# Contributing to Hyperactive
22

3-
There are many ways to contribute to this project. The following list should give you some ideas how to contribute. The only requirement for a contribution is that you are familiar with this project and understand the problems it is trying to solve.
3+
Thank you for your interest in contributing to Hyperactive. This project values self-directed contributors who bring their own ideas and experiences to the table.
44

55

6-
<br>
6+
## Before You Contribute
77

8-
## Discussions
8+
The best contributions come from people who actively use the library. Before contributing, we recommend:
99

10-
You can contribute to this project by taking part in a discussion.
10+
- **Use Hyperactive in your own projects** - Hands-on experience helps you identify real problems and useful improvements
11+
- **Explore the codebase** - Understand the architecture and design decisions
12+
- **Read existing issues and discussions** - Get familiar with ongoing conversations and past decisions
1113

1214

13-
<br>
15+
## Ways to Contribute
1416

15-
#### - Upvoting an issue
17+
### Feedback and Discussions
1618

17-
The easiest way to contribute is to upvote an issue (with a thumbs up emojy) that is important to you. This way I can see which bugfix, feature or question is important to my users.
19+
- **Upvote issues** that are important to you
20+
- **Share your use cases** - How are you using Hyperactive? What works well?
21+
- **Participate in discussions** - Your domain expertise can help shape the project
1822

1923

20-
<br>
24+
### Opening Issues
2125

22-
#### - Take part in discussions
26+
#### Bug Reports
2327

24-
If you have experience in a topic, that touches the issue you might be able to participate in the discussion.
28+
If you encounter a bug while using Hyperactive:
2529

30+
1. Search existing issues to avoid duplicates
31+
2. Use the bug report template
32+
3. Include a minimal reproducible example
33+
4. Describe what you expected vs. what happened
2634

27-
<br>
35+
#### Feature Requests
2836

29-
#### - Reproduce a bug
37+
Feature requests are most valuable when they come from real usage experience:
3038

31-
An issue about a bug can benefit from users reproducing the bug and therefore confirm, that the bug exists.
39+
1. Describe the problem you're trying to solve
40+
2. Explain your current workaround (if any)
41+
3. Suggest a solution if you have one in mind
3242

43+
#### Questions
3344

34-
<br>
45+
Before asking a question:
3546

36-
## Create a pull request
47+
1. Check the documentation
48+
2. Search existing issues and discussions
49+
3. If still unclear, open an issue with specific details
3750

38-
A more difficult way to contribute is to open a pull request.
3951

52+
### Pull Requests
4053

41-
<br>
54+
#### Before Starting
4255

43-
#### - Corrections in Readme
56+
- **Discuss first** - Open an issue to discuss your idea before writing code
57+
- **One change per PR** - Keep pull requests focused on a single improvement
4458

45-
If you want to start easy you can create a pull request, that corrects a mistake in the readme. Those mistakes could be from wrong spelling or a wrong default value in the API reference.
59+
#### When Submitting
4660

61+
- **Understand the code you're changing** - Be prepared to explain your changes and their implications
62+
- **Test thoroughly** - Verify your changes work as intended
63+
- **Explain the "why"** - Help reviewers understand the reasoning behind your changes
4764

48-
<br>
65+
#### PR Format
4966

50-
#### - Add an example
67+
- Use tags in the title: `[Fix]`, `[Feature]`, `[Refactor]`, `[Docs]`
68+
- Link to the related issue
69+
- Describe what changed and why
5170

52-
A great way to conribute is to add an example from you field of work, that incorporates this package.
5371

72+
## Code Style
5473

55-
<br>
74+
- Follow the existing code style in the repository
75+
- Run the test suite before submitting
76+
- Keep commits focused and well-described
5677

57-
#### - Solve an existing issue
5878

59-
Solving an issue with a pull request is one of the most difficult ways to contribute. If you need help with the solution you can ask it in the corresponding issue or contact me at my official email (from my profile page).
79+
## Code of Conduct
6080

61-
62-
<br>
63-
64-
## Open an issue
65-
66-
You can contribute to this project by opening an issue. This could be a question, a bug report, a feature request or other types. In any case you should do a search beforehand to confirm, that a similar issue has not already been opened.
67-
68-
69-
<br>
70-
71-
#### - Questions
72-
73-
This can be a question about how an algorithm works or if something in the documentation is not clear.
74-
75-
76-
<br>
77-
78-
#### - Bug reports
79-
80-
If you encounter an error with this software you should open an issue. Please look into the error message to verify if the origin of the error is in this software. If you decide to open an issue about a bug report you should select the issue template and follow the instructions.
81-
82-
83-
<br>
84-
85-
#### - Feature Requests
86-
87-
This could be a feature that could be very useful for your work, an interesting algorithm or a way to open up the software to more usecases.
88-
89-
90-
<br>
91-
92-
---
93-
94-
<br>
95-
<br>
96-
<br>
97-
98-
# Contribution Guidelines
99-
100-
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
101-
102-
Please note we have a code of conduct, please follow it in all your interactions with the project.
103-
104-
105-
<br>
106-
107-
## Issues
108-
109-
Before opening an issue, please use the search to find out if your problem or question has already been adressed before.
110-
When opening issues, please use the issue templates and try to describe your problem in detail.
111-
112-
If you open an issue that describes a bug, please add a small example code snippet. This helps to reproduce the bug, which speeds up the process of fixing the bug.
113-
114-
115-
<br>
116-
117-
## Pull Requests
118-
119-
- In the PR title use tags [Fix], [Feature], [Refactor], [Release], [Hotfix]
120-
- Link PR to issue of it solves one.
121-
- Explain how you solved the issue
122-
- Check the Format und Coding Style
123-
124-
125-
<br>
126-
127-
---
81+
Please be respectful in all interactions. We're all here to build something useful together.

0 commit comments

Comments
 (0)