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: doc/contribute.md
+15-5Lines changed: 15 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,17 @@
1
1
(contrib_guide)=
2
2
# Contribute
3
3
4
-
We value all contributions to diffCheck, whether they are bug reports, feature requests, or pull requests. We have a few guidelines to ensure that the process is as smooth as possible.
4
+
We welcome pull requests from everyone. Please have a look at the [issue](https://github.com/diffCheckOrg/diffCheck/issues) list to see if there is something you can help with. If you have a new feature in mind, please open an issue to discuss it first.
5
5
6
-
## How to contribute
6
+
## Code quality
7
7
8
-
We welcome pull requests from everyone. Please have a look at the [issue](https://github.com/diffCheckOrg/diffCheck/issues) list to see if there is something you can help with. If you have a new feature in mind, please open an issue to discuss it first.
8
+
We run [mypy](https://mypy.readthedocs.io/en/stable/index.html) and [] on pre-commit hooks to ensure code quality. Please make sure to run the following commands before submitting a pull request:
9
9
10
-
To contribute, you will need to install your developer's environment to build the project. You can find the instructions in the [development installation guide](dev_documentation).
10
+
```console
11
+
pre-commit run --all-files
12
+
```
13
+
14
+
## How to contribute
11
15
12
16
Next, fall the following steps:
13
17
@@ -24,4 +28,10 @@ Next, fall the following steps:
24
28
25
29
```console
26
30
git checkout -b my-feature
27
-
```
31
+
```
32
+
33
+
4. Add the diffCheck repository as a remote for convinience:
0 commit comments