Skip to content
Closed
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
54 changes: 36 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -405,14 +405,16 @@
"default": "state",
"description": "%python.activeStateToolPath.description%",
"scope": "machine-overridable",
"type": "string"
"type": "string",
"ignoreSync": true
},
"python.autoComplete.extraPaths": {
"default": [],
"description": "%python.autoComplete.extraPaths.description%",
"scope": "resource",
"type": "array",
"uniqueItems": true
"uniqueItems": true,
"ignoreSync": true
},
"python.createEnvironment.contentButton": {
"default": "hide",
Expand All @@ -438,13 +440,15 @@
"default": "",
"description": "%python.condaPath.description%",
"scope": "machine",
"type": "string"
"type": "string",
"ignoreSync": true
},
"python.defaultInterpreterPath": {
"default": "python",
"markdownDescription": "%python.defaultInterpreterPath.description%",
"scope": "machine-overridable",
"type": "string"
"type": "string",
"ignoreSync": true
},
"python.diagnostics.sourceMapsEnabled": {
"default": false,
Expand Down Expand Up @@ -606,27 +610,31 @@
"default": "pipenv",
"description": "%python.pipenvPath.description%",
"scope": "machine-overridable",
"type": "string"
"type": "string",
"ignoreSync": true
},
"python.poetryPath": {
"default": "poetry",
"description": "%python.poetryPath.description%",
"scope": "machine-overridable",
"type": "string"
"type": "string",
"ignoreSync": true
},
"python.pixiToolPath": {
"default": "pixi",
"description": "%python.pixiToolPath.description%",
"scope": "machine-overridable",
"type": "string"
"type": "string",
"ignoreSync": true
},
"python.tensorBoard.logDirectory": {
"default": "",
"description": "%python.tensorBoard.logDirectory.description%",
"scope": "resource",
"type": "string",
"markdownDeprecationMessage": "%python.tensorBoard.logDirectory.markdownDeprecationMessage%",
"deprecationMessage": "%python.tensorBoard.logDirectory.deprecationMessage%"
"deprecationMessage": "%python.tensorBoard.logDirectory.deprecationMessage%",
"ignoreSync": true
},
"python.terminal.activateEnvInCurrentTerminal": {
"default": false,
Expand Down Expand Up @@ -725,7 +733,8 @@
"default": "pytest",
"description": "%python.testing.pytestPath.description%",
"scope": "machine-overridable",
"type": "string"
"type": "string",
"ignoreSync": true
},
"python.testing.unittestArgs": {
"default": [
Expand Down Expand Up @@ -762,7 +771,8 @@
"default": "",
"description": "%python.venvPath.description%",
"scope": "machine",
"type": "string"
"type": "string",
"ignoreSync": true
}
},
"title": "Python",
Expand Down Expand Up @@ -793,7 +803,8 @@
},
"debugAdapterPath": {
"description": "Path (fully qualified) to the python debug adapter executable.",
"type": "string"
"type": "string",
"ignoreSync": true
},
"django": {
"default": false,
Expand Down Expand Up @@ -865,7 +876,8 @@
"type": "object"
},
"label": "Path mappings.",
"type": "array"
"type": "array",
"ignoreSync": true
},
"port": {
"description": "Port to connect to.",
Expand Down Expand Up @@ -969,11 +981,13 @@
"cwd": {
"default": "${workspaceFolder}",
"description": "Absolute path to the working directory of the program being debugged. Default is the root directory of the file (leave empty).",
"type": "string"
"type": "string",
"ignoreSync": true
},
"debugAdapterPath": {
"description": "Path (fully qualified) to the python debug adapter executable.",
"type": "string"
"type": "string",
"ignoreSync": true
},
"django": {
"default": false,
Expand All @@ -991,7 +1005,8 @@
"envFile": {
"default": "${workspaceFolder}/.env",
"description": "Absolute path to a file containing environment variable definitions.",
"type": "string"
"type": "string",
"ignoreSync": true
},
"gevent": {
"default": false,
Expand Down Expand Up @@ -1050,7 +1065,8 @@
"type": "object"
},
"label": "Path mappings.",
"type": "array"
"type": "array",
"ignoreSync": true
},
"port": {
"default": 0,
Expand All @@ -1060,7 +1076,8 @@
"program": {
"default": "${file}",
"description": "Absolute path to the program.",
"type": "string"
"type": "string",
"ignoreSync": true
},
"purpose": {
"default": [],
Expand All @@ -1085,7 +1102,8 @@
"python": {
"default": "${command:python.interpreterPath}",
"description": "Absolute path to the Python interpreter executable; overrides workspace configuration if set.",
"type": "string"
"type": "string",
"ignoreSync": true
},
"pythonArgs": {
"default": [],
Expand Down