forked from databricks/databricks-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabricks-vscode.code-workspace
More file actions
29 lines (29 loc) · 960 Bytes
/
databricks-vscode.code-workspace
File metadata and controls
29 lines (29 loc) · 960 Bytes
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
{
"folders": [
{
"path": ".",
"name": "databricks-vscode.git"
},
{
"path": "packages/databricks-vscode",
"name": "Extension"
},
{
"path": "packages/databricks-vscode-types",
"name": "Extension Types"
}
],
"settings": {
"typescript.tsc.autoDetect": "off",
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"jupyter.interactiveWindow.cellMarker.codeRegex": "^# COMMAND ----------|^# Databricks notebook source|^(#\\s*%%|#\\s*\\<codecell\\>|#\\s*In\\[\\d*?\\]|#\\s*In\\[ \\])",
"jupyter.interactiveWindow.cellMarker.default": "# COMMAND ----------"
}
}