diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-08-11 21:37:10 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-11 21:37:10 +0300 |
commit | 44694d699fd715edeeb9fcea9271b09c39b5ac35 (patch) | |
tree | 3a89d5c06276b9721661d2b13fc37a2e87aa85a7 /src/python/devcontainer-feature.json | |
parent | aecf2ad152a75663211a2ac0926e6122c2b0b07f (diff) |
Options: Follow camelCase (#89)
rename Options
Diffstat (limited to 'src/python/devcontainer-feature.json')
-rw-r--r-- | src/python/devcontainer-feature.json | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/src/python/devcontainer-feature.json b/src/python/devcontainer-feature.json index db13b78..5ca1144 100644 --- a/src/python/devcontainer-feature.json +++ b/src/python/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "python", - "version": "1.0.0", + "version": "1.0.1", "name": "Python", "description": "Installs the provided version of Python, as well as PIPX, and other common Python utilities. JupyterLab is conditionally installed with the python feature. Note: May require source code compilation.", "options": { @@ -19,7 +19,7 @@ "default": "os-provided", "description": "Select a Python version to install." }, - "install_python_tools": { + "installTools": { "type": "boolean", "default": true, "description": "Install common Python tools like pylint" @@ -34,17 +34,12 @@ "default": "/usr/local/python", "description": "The path where python will be installed." }, - "override_default_version": { - "type": "boolean", - "default": "true", - "description": "If true, overrides existing version (if any) of python on the PATH" - }, - "install_jupyterlab": { + "installJupyterlab": { "type": "boolean", "default": false, "description": "Install JupyterLab, a web-based interactive development environment for notebooks" }, - "configure_jupyterlab_allow_origin": { + "configureJupyterlabAllowOrigin": { "type": "string", "default": "", "description": "Configure JupyterLab to accept HTTP requests from the specified origin" |