chore: switch yaml formatter to prettier, disable yaml-language-server validation (yamllint covers it)

This commit is contained in:
2026-06-19 12:11:58 +02:00
parent 2bd7a5176f
commit 3bad433f1a
+4 -9
View File
@@ -8,9 +8,7 @@
"tab_size": 2, "tab_size": 2,
"hard_tabs": false, "hard_tabs": false,
"format_on_save": "on", "format_on_save": "on",
"formatter": { "formatter": "prettier"
"language_server": { "name": "yaml-language-server" }
}
}, },
"Python": { "Python": {
"tab_size": 4, "tab_size": 4,
@@ -25,13 +23,10 @@
"settings": { "settings": {
"yaml": { "yaml": {
"schemas": { "schemas": {
"kubernetes": ["**/k8s/*.yaml", "**/k8s/*.yml"] "kubernetes": ["k8s/**/*.yaml", "k8s/**/*.yml"]
}, },
"validate": true, "validate": false,
"completion": true, "completion": true
"format": {
"enable": true
}
} }
} }
} }