feat: restructure sql ingestion

This commit is contained in:
Stijnvandenbroek
2026-03-04 16:54:23 +00:00
parent 78d648069b
commit 34a284d96b
23 changed files with 318 additions and 271 deletions

View File

@@ -3,8 +3,8 @@ templater = jinja
dialect = postgres
max_line_length = 100
# Exclude generated/vendor paths
# Don't require quoted identifiers
exclude_rules = RF05
# Don't require quoted identifiers; allow type-name identifiers (date, timestamp, etc.)
exclude_rules = RF04, RF05
output_line_length = 120
[sqlfluff:templater:jinja]
@@ -13,6 +13,9 @@ output_line_length = 120
source = "{% macro source(source_name, table_name) %}{{ source_name }}.{{ table_name }}{% endmacro %}"
ref = "{% macro ref(model_name) %}{{ model_name }}{% endmacro %}"
[sqlfluff:templater:jinja:context]
schema = raw_funda
[sqlfluff:indentation]
indent_unit = space
tab_space_size = 4