Skip to content

Commit

Permalink
feat: adding autocomplete for yaml files to the init
Browse files Browse the repository at this point in the history
  • Loading branch information
benfdking committed May 23, 2024
1 parent f3c9b68 commit 33d968c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions rust/core/src/init/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,13 @@
"editor.formatOnSave": true,
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"yaml.schemas": {
"https://raw.githubusercontent.com/quarylabs/quary/main/proto/gen/json_schema/ConnectionConfig.json": "quary.yaml",
"https://raw.githubusercontent.com/quarylabs/quary/main/proto/gen/json_schema/ChartFile.json": "models/**/*.chart.yaml",
"https://raw.githubusercontent.com/quarylabs/quary/main/proto/gen/json_schema/ProjectFile.json": [
"models/**/**.yaml",
"!models/**/**.chart.yaml"
]
}
}
8 changes: 8 additions & 0 deletions rust/core/src/init_duckdb/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,13 @@
"editor.formatOnSave": true,
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"yaml.schemas": {
"https://raw.githubusercontent.com/quarylabs/quary/main/proto/gen/json_schema/ConnectionConfig.json": "quary.yaml",
"https://raw.githubusercontent.com/quarylabs/quary/main/proto/gen/json_schema/ChartFile.json": "models/**/*.chart.yaml",
"https://raw.githubusercontent.com/quarylabs/quary/main/proto/gen/json_schema/ProjectFile.json": [
"models/**/**.yaml",
"!models/**/**.chart.yaml"
]
}
}

0 comments on commit 33d968c

Please sign in to comment.