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
Copy file name to clipboardExpand all lines: docs/CONTRIBUTING.md
+9-11Lines changed: 9 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,34 +36,32 @@ You'll need the following prerequisites:
36
36
37
37
### How to contribute
38
38
39
-
1. Fork the repository on GitHub
40
-
2. Clone your fork locally.
41
-
3. Install the project dependencies:
39
+
- Fork the repository on GitHub
40
+
- Clone your fork locally.
41
+
- Install the project dependencies:
42
42
43
43
```bash
44
44
make poetry install pre-commit
45
45
```
46
-
4. Create a new branch (wit a descriptive name) for your changes:
46
+
- Create a new branch (with a descriptive name) for your changes:
47
47
48
48
```bash
49
49
git checkout -b my-new-feature # use descriptive branch name
50
50
```
51
-
5. Make your code changes
52
-
53
-
6. Run tests and linting locally to make sure everything is working as expected.
51
+
- Make your code changes
52
+
- Run tests and linting locally to make sure everything is working as expected.
54
53
55
54
```bash
56
55
make lint test
57
56
```
58
-
7. Commit your changes and push your branch to GitHub
59
-
57
+
- Commit your changes and push your branch to GitHub
60
58
```bash
61
59
git add .
62
60
git commit -m "My new feature"# use descriptive commit message
63
-
git push origin my-new-feature-branch
61
+
git push origin my-new-feature
64
62
```
63
+
- Create a pull request, and request review from the team
65
64
66
-
8. Create a pull request, and request review from the team
67
65
> Please follow the pull request template and fill in as much information as possible. Link to any relevant issues and include a description of your changes.
0 commit comments