Skip to content

fix: ensure path related settings are not synced #235

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 15, 2021
Merged
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
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
"title": "Ansible",
"properties": {
"ansible.ansible.path": {
"scope": "resource",
"scope": "machine-overridable",
"type": "string",
"default": "ansible",
"description": "Path to the ansible executable."
Expand All @@ -133,7 +133,7 @@
"description": "Enable linting with ansible-lint on document open/save."
},
"ansible.ansibleLint.path": {
"scope": "resource",
"scope": "machine-overridable",
"type": "string",
"default": "ansible-lint",
"description": "Path to the ansible-lint executable."
Expand Down Expand Up @@ -192,13 +192,13 @@
"description": "Specify the image pull policy.\nalways: Always pull the image when extension is activated or reloaded\nmissing: Pull if not locally available\nnever: Never pull the image\ntag: If the image tag is 'latest', always pull the image, otherwise pull if not locally available"
},
"ansible.python.activationScript": {
"scope": "resource",
"scope": "machine-overridable",
"type": "string",
"default": "",
"description": "Path to the virtual environment activation script. Use only if you have a custom activation script. It will be sourced using bash before executing Ansible commands. If set, the Interpreter Path setting is ignored."
},
"ansible.python.interpreterPath": {
"scope": "resource",
"scope": "machine-overridable",
"type": "string",
"default": "",
"description": "Path to the Python interpreter executable. Particularly important if you are using a Python virtual environment. Leave blank to use Python from PATH."
Expand Down