-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yaml
More file actions
147 lines (138 loc) · 3.92 KB
/
mkdocs.yaml
File metadata and controls
147 lines (138 loc) · 3.92 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
site_name: Docstring Format Checker
site_description: A Python CLI tool that validates docstring formatting and completeness using AST parsing. Configure validation rules via TOML and ensure consistent documentation across your codebase.
site_author: "[Chris Mahoney](mailto:chris@mahoneyconsultingservices.com)"
site_dir: web
docs_dir: docs
remote_branch: docs-site
repo_name: docstring-format-checker
repo_url: https://github.com/data-science-extensions/docstring-format-checker
edit_uri: edit/main/docs/
watch:
- src/docstring_format_checker
- docs/
- README.md
theme:
name: material
favicon: ./assets/icons/1589516.svg
coverpage_icon: ./assets/icons/1589516.svg
coverpage_icon_source: https://www.flaticon.com/free-icon/coding_1589516
custom_dir: docs/overrides
palette:
primary: blue grey
accent: indigo
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.indexes
- navigation.top
- navigation.instant
- search.highlight
- search.suggest
- toc.follow
- content.action.edit
- content.action.view
- content.code.select
- content.code.copy
- content.code.annotate
logo: ./assets/icons/1589516.svg
icon:
repo: material/github
edit: material/file-edit-outline
view: material/file-eye-outline
font:
code: Consolas, 'Courier New', monospace
hooks:
- docs/overrides/hooks/shortcodes.py
nav:
- Home: index.md
- Usage:
- Overview: usage/overview.md
- Basic:
- Getting Started: usage/getting_started.md
- FAQ: usage/faq.md
- Advanced:
- Configuration: usage/configuration.md
- CLI: usage/command_line_interface.md
- General:
- Contributing: usage/contributing.md
- Change Log: usage/changelog.md
- License: usage/license.md
- Modules:
- code/index.md
- CLI: code/cli.md
- Config: code/config.md
- Core: code/core.md
- Exceptions: code/exceptions.md
- Data Science Extensions: https://data-science-extensions.com/
markdown_extensions:
- admonition
- meta
- attr_list
- md_in_html
- toc:
permalink: "🔗"
- pymdownx.emoji
- pymdownx.magiclink
- pymdownx.details
- pymdownx.superfences
- pymdownx.progressbar
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets:
check_paths: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.arithmatex:
generic: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
extra:
version:
provider: mike
default: latest
extra_css:
- assets/stylesheets/style.css
- assets/stylesheets/admonitions.css
- assets/stylesheets/code_chunks.css
- assets/stylesheets/shortcodes.css
- https://site-assets.fontawesome.com/releases/v6.4.2/css/all.css
plugins:
- search:
lang: en
- autorefs
- mike:
version_selector: true
alias_type: copy
- mkdocstrings:
default_handler: python
handlers:
python:
paths:
- src
options:
# extensions:
# - griffe_inherited_docstrings
# - docstring_inheritance.griffe
allow_inspection: true
docstring_style: google
show_root_heading: true
show_root_toc_entry: false
show_root_full_path: true
show_source: true
show_object_full_path: false
separate_signature: true
show_signature_annotations: true
show_symbol_type_heading: true
show_symbol_type_toc: true
show_category_heading: true
show_if_no_docstring: true
heading_level: 3
members_order: source
group_by_category: false
filters:
- "!^__all__"