forked from Nike-Inc/spark-expectations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
161 lines (150 loc) · 4.1 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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
site_name: Spark-Expectations
site_author: Ashok Singamaneni
copyright: Nike
site_description: Spark-Expectations is a framework for running data quality rules inflight of spark job.
site_url: https://engineering.nike.com/spark-expectations
repo_name: nike/spark-expectations
repo_url: https://github.com/Nike-Inc/spark-expectations
theme:
name: material
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.code.annotate
- content.tooltips
- content.code.copy
- navigation.expand
- navigation.indexes
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- navigation.expand
- search.highlight
- search.share
- search.suggest
- toc.follow
font:
text: Roboto
code: Roboto Mono
language: en
nav:
- Home: 'index.md'
- Setup: getting-started/setup.md
- Migration_Guide:
- comparison: configurations/migration_versions_comparison.md
- Examples:
Understand Args: examples.md
Delta: delta.md
BigQuery: bigquery.md
Iceberg: iceberg.md
Rules: configurations/rules.md
Configure Rules: configurations/configure_rules.md
- Python API:
- Core:
Init: api/core_init.md
Context: api/context.md
Exceptions: api/exceptions.md
Expectations: api/expectations.md
- Sinks:
Init: api/sinks_init.md
Base_Writer_Plugin: api/base_sink_plugin.md
Delta_Sink_Plugin: api/delta_sink_plugin.md
Kafka_Sink_plugin: api/kafka_sink_plugin.md
Utils:
- Writer: api/writer.md
- Sink_Decorater: api/sinks_decorater
- Notification:
Init: api/notifications_init.md
Base_Notification_plugin: api/base_notification_plugin.md
Email_Notification_plugin: api/email_plugin.md
Slack_Notification_plugin: api/slack_plugin.md
Push:
- Notification_Decorater: api/notifications_decorater
- Utils:
Actions: api/actions.md
Reader: api/reader.md
Regulate_flow: api/regulate_flow.md
Udf: api/udf.md
- Examples:
Base_Setup: api/base_setup.md
Sample_DQ: api/sample_dq.md
plugins:
- search:
lang: en
- mkdocstrings:
handlers:
python:
paths: [ "spark_expectations" ]
options:
show_source: true
show_root_heading: false
heading_level: 1
merge_init_into_class: true
show_if_no_docstring: true
show_root_full_path: true
show_root_members_full_path: true
show_root_toc_entry: false
show_category_heading: true
show_signature_annotations: true
separate_signature: false
markdown_extensions:
- abbr
- admonition
- mkdocs-click
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:materialx.emoji.to_svg
emoji_index: !!python/name:materialx.emoji.twemoji
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
watch:
- spark_expectations
extra_css:
- css/custom.css
extra:
generator: false
version:
provider: mike
default: latest