forked from commitizen-tools/commitizen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
65 lines (59 loc) · 1.82 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
site_name: Commitizen
site_description: commit rules, semantic version, conventional commits
theme:
name: "material"
palette:
- primary: 'deep purple'
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
repo_name: commitizen-tools/commitizen
repo_url: https://github.com/commitizen-tools/commitizen
edit_uri: ""
nav:
- Introduction: "README.md"
- Getting Started: "getting_started.md"
- Commands:
- Init: "init.md"
- Commit: "commit.md"
- Bump: "bump.md"
- Check: "check.md"
- Changelog: "changelog.md"
- Configuration: "config.md"
- Customization: "customization.md"
- Tutorials:
- Writing commits: "tutorials/writing_commits.md"
- Auto check commits: "tutorials/auto_check.md"
- Auto prepare commit message: "tutorials/auto_prepare_commit_message.md"
- GitLab CI: "tutorials/gitlab_ci.md"
- Github Actions: "tutorials/github_actions.md"
- Jenkins pipeline: "tutorials/jenkins_pipeline.md"
- FAQ: "faq.md"
- Exit Codes: "exit_codes.md"
- Third-Party Commitizen Templates: "third-party-commitizen.md"
- Contributing: "contributing.md"
- Resources: "external_links.md"
markdown_extensions:
- markdown.extensions.codehilite:
guess_lang: false
- admonition
- codehilite
- extra
- pymdownx.highlight
- pymdownx.superfences
- toc:
permalink: true