diff --git a/.gitignore b/.gitignore index a01288491..3d2a585c9 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/packages/databricks-vscode/package.json b/packages/databricks-vscode/package.json index 4da3d10b1..675583c47 100644 --- a/packages/databricks-vscode/package.json +++ b/packages/databricks-vscode/package.json @@ -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" }, { diff --git a/packages/databricks-vscode/src/bundle/bundleAutocompleteProvider.ts b/packages/databricks-vscode/src/bundle/bundleAutocompleteProvider.ts index e3676e7d2..f5c93f3f1 100644 --- a/packages/databricks-vscode/src/bundle/bundleAutocompleteProvider.ts +++ b/packages/databricks-vscode/src/bundle/bundleAutocompleteProvider.ts @@ -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) {