Created
August 21, 2021 09:10
-
-
Save tuanchris/c0624f63a95ea1e6b18c0092ac1608c7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[sqlfluff] | |
verbose = 0 | |
nocolor = False | |
dialect = bigquery | |
templater = dbt | |
rules = None | |
exclude_rules = L034, L016, L044, L029, | |
recurse = 0 | |
output_line_length = 100 | |
runaway_limit = 10 | |
ignore_templated_areas = True | |
# Comma separated list of file extensions to lint. | |
# NB: This config will only apply in the root folder. | |
sql_file_exts = .sql,.sql.j2,.dml,.ddl | |
[sqlfluff:indentation] | |
indented_joins = False | |
template_blocks_indent = True | |
[sqlfluff:templater] | |
unwrap_wrapped_queries = True | |
[sqlfluff:templater:jinja] | |
apply_dbt_builtins = True | |
[sqlfluff:templater:jinja:macros] | |
# Macros provided as builtins for dbt projects | |
dbt_ref = {% macro ref(model_ref) %}{{model_ref}}{% endmacro %} | |
dbt_source = {% macro source(source_name, table) %}{{source_name}}_{{table}}{% endmacro %} | |
dbt_config = {% macro config() %}{% for k in kwargs %}{% endfor %}{% endmacro %} | |
dbt_var = {% macro var(variable) %}item{% endmacro %} | |
dbt_is_incremental = {% macro is_incremental() %}True{% endmacro %} | |
# Some rules can be configured directly from the config common to other rules. | |
[sqlfluff:rules] | |
tab_space_size = 4 | |
max_line_length = 80 | |
indent_unit = space | |
comma_style = trailing | |
allow_scalar = True | |
single_table_references = consistent | |
unquoted_identifiers_policy = all | |
# Some rules have their own specific config. | |
[sqlfluff:rules:L003] | |
lint_templated_tokens = True | |
[sqlfluff:rules:L010] # Keywords | |
capitalisation_policy = lower | |
[sqlfluff:rules:L014] # Unquoted identifiers | |
extended_capitalisation_policy = lower | |
unquoted_identifiers_policy = column_aliases | |
[sqlfluff:rules:L016] | |
ignore_comment_lines = True | |
[sqlfluff:rules:L029] # Keyword identifiers | |
unquoted_identifiers_policy = aliases | |
[sqlfluff:rules:L030] # Function names | |
capitalisation_policy = lower | |
[sqlfluff:rules:L038] | |
select_clause_trailing_comma = forbid | |
[sqlfluff:rules:L040] # Null & Boolean Literals | |
capitalisation_policy = consistent | |
[sqlfluff:rules:L042] | |
# By default, allow subqueries in from clauses, but not join clauses. | |
forbid_subquery_in = join | |
[sqlfluff:rules:L047] # Consistent syntax to count all rows | |
prefer_count_1 = False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
target/ | |
dbt_modules/ | |
macros/ | |
utils/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment