-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmkdocs.yaml
102 lines (93 loc) · 2.36 KB
/
mkdocs.yaml
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
92
93
94
95
96
97
98
99
100
101
102
site_name: RyeCharm
site_description: The all-in-one PyCharm plugin for Astral-backed Python tools.
site_url: https://insyncwithfoo.github.io/ryecharm
repo_name: InSyncWithFoo/ryecharm
repo_url: https://github.com/InSyncWithFoo/ryecharm
edit_uri: blob/master/docs/
exclude_docs: |
/requirements.txt
theme:
name: material
favicon: assets/icon-black.svg
logo: assets/icon-white.svg
palette:
-
media: "(prefers-color-scheme: light)"
scheme: astral-light
toggle:
icon: octicons/sun-16
name: "Switch to dark mode"
-
media: "(prefers-color-scheme: dark)"
scheme: astral-dark
toggle:
icon: octicons/moon-16
name: "Switch to light mode"
features:
- content.action.edit
- content.action.view
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.tracking
- search.suggest
markdown_extensions:
admonition:
codehilite:
md_in_html:
pymdownx.details:
pymdownx.tabbed:
alternate_style: true
combine_header_slug: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
pymdownx.smartsymbols:
arrows: true
care_of: false
copyright: false
fractions: false
notequal: false
ordinal_numbers: false
plusminus: false
registered: false
trademark: false
pymdownx.superfences:
toc:
permalink: '#'
extra_css:
- stylesheets/extra.css
nav:
- Overview: index.md
- Features: features.md
- Ruff:
- Ruff integration: ruff/index.md
- Running modes: ruff/running-modes.md
- Linting: ruff/linting.md
- Formatting: ruff/formatting.md
- Documentation: ruff/documentation.md
- Actions: ruff/actions.md
- Intentions: ruff/intentions.md
- uv:
- uv integration: uv/index.md
- Actions: uv/actions.md
- Intentions: uv/intentions.md
- Inspections: uv/inspections.md
- Rye:
- Rye integration: rye/index.md
- Actions: rye/actions.md
- Intentions: rye/intentions.md
- Configurations:
- Configurations overview: configurations/index.md
- Ruff: configurations/ruff.md
- uv: configurations/uv.md
- Rye: configurations/rye.md
- Other: configurations/main.md
- Other features: other-features.md
- FAQ: faq.md
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
strict: true