Skip to content

Commit bc1c07c

Browse files
scophyperupcall
andauthored
refactor: expand remaining braces in catalog globs (SchemaStore#4608)
Co-authored-by: hyperupcall <[email protected]>
1 parent d68e8bb commit bc1c07c

File tree

1 file changed

+33
-7
lines changed

1 file changed

+33
-7
lines changed

src/api/json/catalog.json

Lines changed: 33 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1156,31 +1156,40 @@
11561156
{
11571157
"name": "dbt Dependencies",
11581158
"description": "dbt's dependencies.yml file for external packages and cross-project refs",
1159-
"fileMatch": ["**/*dbt*/dependencies.{yaml,yml}"],
1159+
"fileMatch": ["**/*dbt*/dependencies.yaml", "**/*dbt*/dependencies.yml"],
11601160
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/latest/dependencies-latest.json"
11611161
},
11621162
{
11631163
"name": "dbt Project",
11641164
"description": "dbt's project configuration file",
1165-
"fileMatch": ["dbt_project.{yaml,yml}"],
1165+
"fileMatch": ["dbt_project.yaml", "dbt_project.yml"],
11661166
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/latest/dbt_project-latest.json"
11671167
},
11681168
{
11691169
"name": "dbt Packages",
11701170
"description": "dbt's packages.yml file for external packages",
1171-
"fileMatch": ["**/*dbt*/packages.{yaml,yml}"],
1171+
"fileMatch": ["**/*dbt*/packages.yaml", "**/*dbt*/packages.yml"],
11721172
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/latest/packages-latest.json"
11731173
},
11741174
{
11751175
"name": "dbt Selectors",
11761176
"description": "dbt's selectors.yml file for configuring YAML selectors",
1177-
"fileMatch": ["**/*dbt*/selectors.{yaml,yml}"],
1177+
"fileMatch": ["**/*dbt*/selectors.yaml", "**/*dbt*/selectors.yml"],
11781178
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/latest/selectors-latest.json"
11791179
},
11801180
{
11811181
"name": "dbt YAML files",
11821182
"description": "dbt YAML files configurations",
1183-
"fileMatch": ["**/*dbt*/{macros,models,seeds,snapshots}/**/*.{yaml,yml}"],
1183+
"fileMatch": [
1184+
"**/*dbt*/macros/**/*.yaml",
1185+
"**/*dbt*/macros/**/*.yml",
1186+
"**/*dbt*/models/**/*.yaml",
1187+
"**/*dbt*/models/**/*.yml",
1188+
"**/*dbt*/seeds/**/*.yaml",
1189+
"**/*dbt*/seeds/**/*.yml",
1190+
"**/*dbt*/snapshots/**/*.yaml",
1191+
"**/*dbt*/snapshots/**/*.yml"
1192+
],
11841193
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/latest/dbt_yml_files-latest.json"
11851194
},
11861195
{
@@ -6179,7 +6188,15 @@
61796188
"name": "Windows Package Manager Locale Manifest",
61806189
"description": "Windows Package Manager Locale Manifest file, used for detailing locale specific metadata",
61816190
"fileMatch": [
6182-
"**/manifests/?/*/*/*/*.*.locale.{en-US,fr-FR,it-IT,ja-JP,ko-KR,pt-BR,ru-RU,zh-CN,zh-TW}.yaml"
6191+
"**/manifests/?/*/*/*/*.*.locale.en-US.yaml",
6192+
"**/manifests/?/*/*/*/*.*.locale.fr-FR.yaml",
6193+
"**/manifests/?/*/*/*/*.*.locale.it-IT.yaml",
6194+
"**/manifests/?/*/*/*/*.*.locale.ja-JP.yaml",
6195+
"**/manifests/?/*/*/*/*.*.locale.ko-KR.yaml",
6196+
"**/manifests/?/*/*/*/*.*.locale.pt-BR.yaml",
6197+
"**/manifests/?/*/*/*/*.*.locale.ru-RU.yaml",
6198+
"**/manifests/?/*/*/*/*.*.locale.zh-CN.yaml",
6199+
"**/manifests/?/*/*/*/*.*.locale.zh-TW.yaml"
61836200
],
61846201
"url": "https://json.schemastore.org/winget-pkgs-locale-1.0.0.json"
61856202
},
@@ -7831,7 +7848,16 @@
78317848
{
78327849
"name": "Open Know-How",
78337850
"description": "Open Source Hardware project metadata",
7834-
"fileMatch": ["?(*.)okh.{json,toml,yml,yaml}"],
7851+
"fileMatch": [
7852+
"okh.json",
7853+
"okh.toml",
7854+
"okh.yaml",
7855+
"okh.yml",
7856+
"*.okh.json",
7857+
"*.okh.toml",
7858+
"*.okh.yaml",
7859+
"*.okh.yml"
7860+
],
78357861
"url": "https://json.schemastore.org/okh.json"
78367862
},
78377863
{

0 commit comments

Comments
 (0)