-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmkdocs.yaml
More file actions
36 lines (33 loc) · 948 Bytes
/
mkdocs.yaml
File metadata and controls
36 lines (33 loc) · 948 Bytes
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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: AcidWatch Documentation
theme:
name: material
nav:
- AcidWatch: index.md
- Reference:
- Adapter: reference/adapter.md
- ADRs:
- '#001 Frontend-Backend Model Intergration': adr/001_frontend_backend_model_integration.md
plugins:
- mkdocstrings:
handlers:
python:
options:
extensions:
- griffe_typingdoc
show_root_heading: true
show_if_no_docstring: true
preload_modules:
- httpx
- pydantic
inherited_members: true
members_order: source
separate_signature: true
unwrap_annotated: true
filters:
- '!^_'
merge_init_into_class: true
docstring_section_style: spacy
signature_crossrefs: true
show_symbol_type_heading: true
show_symbol_type_toc: true