Created
September 18, 2024 15:25
-
-
Save ppat/40643a0e3d4a7b68240119d744b880e2 to your computer and use it in GitHub Desktop.
VSCode Remote Workspace setttings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "folders": [ | |
| { | |
| "name": "homelab-ops-ansible", | |
| "path": "code/homelab-ops-ansible" | |
| }, | |
| { | |
| "name": "homelab-ops-kubernetes-apps", | |
| "path": "code/homelab-ops-kubernetes-apps" | |
| }, | |
| { | |
| "name": "homelab-ops-packer", | |
| "path": "code/homelab-ops-packer" | |
| }, | |
| { | |
| "name": "images", | |
| "path": "code/images" | |
| }, | |
| { | |
| "name": "renovate-presets", | |
| "path": "code/renovate-presets" | |
| } | |
| ], | |
| "settings": { | |
| "ansible.ansible.path": "/opt/pipx/bin/ansible", | |
| "ansible.ansible.reuseTerminal": false, | |
| "ansible.python.interpreterPath": "/usr/bin/python3", | |
| "ansible.validation.lint.path": "/opt/pipx/bin/ansible-lint", | |
| "files.associations": { | |
| "*.j2": "jinja" | |
| }, | |
| "json.format.keepLines": true, | |
| "python.testing.pytestEnabled": true, | |
| "python.defaultInterpreterPath": "/usr/bin/python3", | |
| "python.poetryPath": "/opt/pipx/bin/poetry", | |
| "python.testing.pytestArgs": [ | |
| "-vrsx" | |
| ], | |
| "search.followSymlinks": false, | |
| "search.useIgnoreFiles": true, | |
| "vs-kubernetes": { | |
| "crd-code-completion": "enabled", | |
| "disable-linters": [ | |
| "resource-limits" | |
| ], | |
| }, | |
| "vscode-kubernetes.log-viewer.follow": true, | |
| "vscode-kubernetes.log-viewer.tail": 100, | |
| "vsintellicode.java.completionsEnabled": false, | |
| "vsintellicode.sql.completionsEnabled": false, | |
| "vsintellicode.typescript.completionsEnabled": false, | |
| "yaml.format.enable": false, | |
| "yaml.validate": false, | |
| }, | |
| "extensions": { | |
| "recommendations": [ | |
| "github.vscode-github-actions", | |
| "hashicorp.hcl", | |
| "hashicorp.terraform", | |
| "ms-azuretools.vscode-docker", | |
| "ms-kubernetes-tools.vscode-kubernetes-tools", | |
| "redhat.ansible", | |
| "redhat.vscode-yaml", | |
| "samuelcolvin.jinjahtml", | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment