data-dwh-dbt-project/.vscode/settings.json

38 lines
1.3 KiB
JSON
Raw Normal View History

2024-01-18 12:20:14 +01:00
{
2024-01-18 12:53:50 +01:00
"dbt.queryLimit": 500,
2024-01-18 17:25:41 +01:00
"dbt.enableNewQueryPanel": true,
"emeraldwalk.runonsave": {
"commands": [
{
"match": ".*\\.sql(\\.jinja)?",
"isAsync": true,
"cmd": "sqlfmt ${file}"
}
]
2024-01-18 17:34:39 +01:00
},
2024-02-16 17:37:55 +01:00
"dbt.enableNewLineagePanel": true,
2024-02-26 17:53:23 +01:00
"dbt.enableNewDocsPanel": true,
2024-09-12 15:25:45 +02:00
"[yaml]": {
"editor.formatOnSave": true
},
2024-02-26 17:53:23 +01:00
"yaml.schemas": {
"https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/refs/heads/main/schemas/latest/dbt_yml_files-latest.json": [
2024-02-26 17:53:23 +01:00
"/**/*.yml",
"!profiles.yml",
"!dbt_project.yml",
"!packages.yml",
"!selectors.yml",
"!profile_template.yml"
],
"https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/refs/heads/main/schemas/latest/dbt_project-latest.json": [
2024-02-26 17:53:23 +01:00
"dbt_project.yml"
],
"https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/refs/heads/main/schemas/latest/selectors-latest.json": [
2024-02-26 17:53:23 +01:00
"selectors.yml"
],
"https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/refs/heads/main/schemas/latest/packages-latest.json": [
2024-02-26 17:53:23 +01:00
"packages.yml"
]
},
"dbt.prefixGenerateModel": "stg"
2024-01-18 12:20:14 +01:00
}