-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqrust.toml.example
More file actions
25 lines (22 loc) · 1.01 KB
/
sqrust.toml.example
File metadata and controls
25 lines (22 loc) · 1.01 KB
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
# sqrust.toml — example configuration file
# Copy this file to your project root as sqrust.toml and adjust as needed.
[sqrust]
# SQL dialect for parsing. Overrides the default (ansi).
# Valid values: ansi | bigquery | snowflake | duckdb | postgres | postgresql | mysql
# dialect = "ansi"
# Glob patterns for paths to exclude from linting.
# Example: skip dbt package installs and build output.
# exclude = ["dbt_packages/**", "target/**"]
[rules]
# All 330 rules are enabled by default.
# To disable specific rules, list them here:
#
# disable = [
# "Convention/SelectStar",
# "Layout/LongLines",
# ]
#
# ── v0.2.0 (planned) ─────────────────────────────────────────────────────────
# Ruff-style allowlist model: opt into rule categories or individual rules
# instead of opting out. Fields `select` and `ignore` are reserved for that
# future release. Using them now will produce a clear config error.