forked from dbt-labs/dbt-jsonschema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
62 lines (60 loc) · 1.63 KB
/
settings.json
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"yaml.schemas": {
"./schemas/1.5/dbt_yml_files-1.5.json": [
"/tests/1.5/**/*.yml",
"!profiles.yml",
"!dbt_project.yml",
"!packages.yml",
"!selectors.yml",
"!profile_template.yml",
"!/.github/**/*.yml"
],
"./schemas/1.5/dbt_project-1.5.json": [
"/tests/1.5/**/dbt_project.yml"
],
"./schemas/1.5/selectors-1.5.json": [
"/tests/1.5/**/selectors.yml"
],
"./schemas/1.5/packages-1.5.json": [
"/tests/1.5/**/packages.yml"
],
"./schemas/1.6/dbt_yml_files-1.6.json": [
"/tests/1.6/**/*.yml",
"!profiles.yml",
"!dbt_project.yml",
"!packages.yml",
"!selectors.yml",
"!dependencies.yml",
"!profile_template.yml",
"!/.github/**/*.yml"
],
"./schemas/1.6/dbt_project-1.6.json": [
"/tests/1.6/**/dbt_project.yml"
],
"./schemas/1.6/selectors-1.6.json": [
"/tests/1.6/**/selectors.yml"
],
"./schemas/1.6/packages-1.6.json": [
"/tests/1.6/**/packages.yml"
],
"./schemas/1.6/dependencies-1.6.json": [
"/tests/1.6/**/dependencies.yml"
]
},
"sortJSON.orderOverride": [
"version",
"title",
"name",
"type",
"required",
"if",
"then",
"else"
],
"sortJSON.orderUnderride": [
"properties",
"patternProperties",
"additionalProperties",
"$defs"
]
}