This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
/
mkdocs.yml
91 lines (91 loc) · 2.58 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
docs_dir: docs/src
site_name: Regula
nav:
- Home: "index.md"
- "getting-started.md"
- "usage.md"
- "rules.md"
- "report.md"
- "configuration.md"
- "fugue.md"
- Integrations:
- "integrations/conftest.md"
- "integrations/gh-actions.md"
- "integrations/travis.md"
- "integrations/bitbucket-pipelines.md"
- "integrations/scalr.md"
- "integrations/pre-commit.md"
- Custom Rule Development:
- "development/writing-rules.md"
- "development/writing-tests.md"
- "development/testing-rules.md"
- "development/test-inputs.md"
- Examples:
- "examples/waive-and-disable.md"
- "examples/writing-a-rule.md"
- "examples/debug-tutorial.md"
- "contributing.md"
- CHANGELOG: "docs-changelog.md"
- "about.md"
theme:
name: material
palette:
primary: deep purple
accent: light blue
favicon: img/favicon.ico
logo: img/favicon.ico
icon:
repo: fontawesome/brands/github
copyright: Copyright © 2023 <a href="https://www.fugue.co" target="_blank">Fugue, Inc.</a>
repo_url: https://github.com/fugue/regula
use_directory_urls: false
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/tablesort/5.2.1/tablesort.min.js
- javascripts/tables.js
markdown_extensions:
- admonition
- pymdownx.highlight
- pymdownx.superfences
- def_list
- pymdownx.tabbed
- pymdownx.snippets
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
- pymdownx.magiclink:
repo_url_shorthand: true
user: fugue
repo: regula
- toc:
permalink: ⚓︎
site_url: https://regula.dev
edit_uri: blob/master/docs/src/
extra:
version: v3.2.1
social:
- icon: fontawesome/solid/globe
link: https://www.fugue.co
name: Fugue website
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/fugue-inc-/
name: Fugue on LinkedIn
- icon: fontawesome/brands/twitter
link: https://twitter.com/fuguehq
name: Fugue on Twitter
- icon: fontawesome/brands/github
link: https://github.com/fugue
name: Fugue on GitHub
- icon: fontawesome/solid/envelope
link: mailto:[email protected]
name: Email the Regula team
analytics:
provider: google
property: G-83QYJE6Q8C
plugins:
- macros
- search
- redirects:
redirect_maps:
"integrations/regula-conftest.md": "integrations/conftest.md"
"integrations/regula-gh-actions.md": "integrations/gh-actions.md"
"integrations/regula-travis.md": "integrations/travis.md"
"development/rule-development.md": "development/writing-rules.md"