|
| 1 | +{ |
| 2 | + // Editor settings |
| 3 | + "editor.formatOnSave": true, |
| 4 | + "editor.rulers": [80, 120], |
| 5 | + "editor.tabSize": 2, |
| 6 | + "files.trimTrailingWhitespace": true, |
| 7 | + "files.insertFinalNewline": true, |
| 8 | + |
| 9 | + // Python settings |
| 10 | + "python.linting.enabled": true, |
| 11 | + "python.linting.pylintEnabled": true, |
| 12 | + "python.linting.flake8Enabled": true, |
| 13 | + "python.formatting.provider": "black", |
| 14 | + "python.testing.pytestEnabled": true, |
| 15 | + |
| 16 | + // Kubernetes settings |
| 17 | + "vs-kubernetes": { |
| 18 | + "vs-kubernetes.helm-path": "helm", |
| 19 | + "vs-kubernetes.kubectl-path": "kubectl", |
| 20 | + "vs-kubernetes.minikube-path": "minikube" |
| 21 | + }, |
| 22 | + |
| 23 | + // Terminal settings |
| 24 | + "terminal.integrated.defaultProfile.linux": "bash", |
| 25 | + "terminal.integrated.cwd": "${workspaceFolder}", |
| 26 | + |
| 27 | + // File associations |
| 28 | + "files.associations": { |
| 29 | + "*.yaml": "yaml", |
| 30 | + "*.yml": "yaml", |
| 31 | + "Dockerfile*": "dockerfile", |
| 32 | + ".env*": "properties", |
| 33 | + "Makefile": "makefile" |
| 34 | + }, |
| 35 | + |
| 36 | + // Exclude from file explorer |
| 37 | + "files.exclude": { |
| 38 | + "**/.git": true, |
| 39 | + "**/.terraform": true, |
| 40 | + "**/__pycache__": true, |
| 41 | + "**/*.pyc": true, |
| 42 | + "**/.pytest_cache": true |
| 43 | + }, |
| 44 | + |
| 45 | + // Task settings |
| 46 | + "task.autoDetect": "on", |
| 47 | + "task.problemMatchers.neverPrompt": false, |
| 48 | + |
| 49 | + // Git settings |
| 50 | + "git.enableSmartCommit": true, |
| 51 | + "git.confirmSync": false, |
| 52 | + |
| 53 | + // YAML settings |
| 54 | + "[yaml]": { |
| 55 | + "editor.insertSpaces": true, |
| 56 | + "editor.tabSize": 2, |
| 57 | + "editor.autoIndent": "advanced" |
| 58 | + }, |
| 59 | + |
| 60 | + // Python settings |
| 61 | + "[python]": { |
| 62 | + "editor.tabSize": 4, |
| 63 | + "editor.insertSpaces": true |
| 64 | + }, |
| 65 | + |
| 66 | + // Makefile settings |
| 67 | + "[makefile]": { |
| 68 | + "editor.insertSpaces": false, |
| 69 | + "editor.detectIndentation": false |
| 70 | + }, |
| 71 | + |
| 72 | + // Custom task buttons in status bar |
| 73 | + "statusBar.visible": true |
| 74 | +} |
0 commit comments