We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf03c8d commit 85fb343Copy full SHA for 85fb343
docs/contributing_tldr.md
@@ -12,6 +12,9 @@ Please check the [pyproject.toml](https://github.com/commitizen-tools/commitizen
12
### Code Changes
13
14
```bash
15
+# Make sure you have the latest version of poetry installed
16
+poetry self update
17
+
18
# Ensure you have the correct dependencies, for nix user's see below
19
poetry install
20
@@ -36,6 +39,13 @@ pytest -n auto <test_suite>
36
39
poetry doc
37
40
```
38
41
42
+Also, we use [Lychee](https://lychee.cli.rs/) to check for broken links in the documentation.
43
44
+```bash
45
+# Check for broken links in the documentation
46
+lychee .
47
+```
48
49
### Nix Users
50
51
If you are using Nix, you can install poetry locally by running:
0 commit comments