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: CONTRIBUTING.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,14 @@ Use [pre-commit](https://pre-commit.com/#installation) to automatically format y
56
56
python3 -m pip install pre-commit # only required the first time
57
57
pre-commit install
58
58
```
59
-
That's it! The plugin will run every time you commit any changes. If there are any errors found during the run, fix them and commit those changes. You can even run the plugin manually on all files:
59
+
That's it! The plugin will run every time you commit any changes. If there are any errors found during the run, fix them and commit those changes.
You can even run the plugin manually on all files:
60
67
61
68
```bash
62
69
pre-commit run --all-files --show-diff-on-failure
@@ -74,13 +81,6 @@ We want your work to be readable by others; therefore, we encourage you to note
74
81
75
82
- We encourage the use of Python [f-strings](https://realpython.com/python-f-strings/#f-strings-a-new-and-improved-way-to-format-strings-in-python) where they make the code easier to read.
76
83
77
-
- Do not forget that running `pre-commit` checks locally will help you to follow code quality standards.
0 commit comments