Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ out/
**/coverage/
**/.nyc_output/
.databricks/**
/databricks.yml
packages/databricks-sdk-js/src/config/testdata/azure/Library
*.d.ts.map
*.js.map
Expand Down
2 changes: 1 addition & 1 deletion packages/databricks-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@
},
{
"view": "configurationView",
"contents": "Select a folder where you want to create a new Databricks project using a [template](https://docs.databricks.com/en/dev-tools/bundles/templates.html#databricks-asset-bundle-project-templates):\n[Create a new project](command:databricks.bundle.initNewProject)",
"contents": "Select a folder where you want to create a new Databricks project using a [template](https://docs.databricks.com/en/dev-tools/bundles/templates#template-project-structure):\n[Create a new project](command:databricks.bundle.initNewProject)",
"when": "workspaceFolderCount > 0 && databricks.context.initialized && !databricks.context.isBundleProject"
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ export async function registerBundleAutocompleteProvider(
const dabsUriScheme = "dabs";

// URI for bundle root config json schema
const rootConfigSchemaUri = `${dabsUriScheme}:///databricks-asset-bundles.json`;
// The triple slash is on purpose (empty authority in Uri)
const rootConfigSchemaUri = `${dabsUriScheme}:///declarative-automation-bundles.json`;

const extensionYaml = extensions.getExtension("redhat.vscode-yaml");
if (extensionYaml) {
Expand Down
Loading