mirror of
https://github.com/dbt-labs/dbt-project-evaluator.git
synced 2025-12-18 02:11:27 +00:00
87 lines
2.3 KiB
YAML
87 lines
2.3 KiB
YAML
site_name: dbt_project_evaluator
|
|
|
|
|
|
|
|
theme:
|
|
|
|
palette:
|
|
|
|
# Palette toggle for light mode
|
|
- media: "(prefers-color-scheme: light)"
|
|
scheme: default
|
|
primary: custom
|
|
accent: custom
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: Switch to dark mode
|
|
|
|
# Palette toggle for dark mode
|
|
- media: "(prefers-color-scheme: dark)"
|
|
scheme: slate
|
|
primary: custom
|
|
accent: custom
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: Switch to light mode
|
|
|
|
# primary: black
|
|
logo: assets/dbt-logo.svg
|
|
name: material
|
|
features:
|
|
- navigation.footer
|
|
# - navigation.tabs
|
|
# - navigation.sections
|
|
- navigation.instant
|
|
- navigation.tracking
|
|
- content.action.edit
|
|
- toc.integrate # check feedback
|
|
|
|
extra_css:
|
|
- stylesheets/extra.css
|
|
|
|
extra:
|
|
version:
|
|
provider: mike
|
|
|
|
markdown_extensions:
|
|
- attr_list # needed to allow providing width
|
|
- md_in_html # to allow Markdown in details
|
|
- toc:
|
|
toc_depth: 3
|
|
permalink: "#"
|
|
|
|
# all for code blocks
|
|
- pymdownx.highlight:
|
|
anchor_linenums: true
|
|
line_spans: __span
|
|
pygments_lang_class: true
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.snippets
|
|
- pymdownx.superfences
|
|
- pymdownx.details # allow collapsible blocks
|
|
- admonition # allow call outs
|
|
|
|
repo_url: https://github.com/dbt-labs/dbt-project-evaluator
|
|
repo_name: dbt-labs/dbt-project-evaluator
|
|
edit_uri: edit/main/docs/
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- Rules:
|
|
- List of rules: rules.md
|
|
- Modeling: rules/modeling.md
|
|
- Testing: rules/testing.md
|
|
- Documentation: rules/documentation.md
|
|
- Structure: rules/structure.md
|
|
- Performance: rules/performance.md
|
|
- Governance: rules/governance.md
|
|
- Customization:
|
|
- Overriding variables: customization/overriding-variables.md
|
|
- Disabling checks: customization/customization.md
|
|
- Configuring exceptions to the rules: customization/exceptions.md
|
|
- Excluding packages and models/sources based on path: customization/excluding-packages-and-paths.md
|
|
- Display issues in the logs: customization/issues-in-log.md
|
|
- Querying columns names and descriptions: customization/querying-columns-names-and-descriptions.md
|
|
- Run in CI Check: ci-check.md
|
|
- Querying the DAG: querying-the-dag.md
|
|
- Contributing: contributing.md |