Initial commit

This commit is contained in:
2026-04-26 17:22:42 +02:00
commit c7842b9f3b
9 changed files with 117 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"EditorConfig.EditorConfig",
// Code formatter using prettier
"esbenp.prettier-vscode",
"gamunu.opentofu"
]
}
+15
View File
@@ -0,0 +1,15 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.formatOnPaste": false,
"vs-kubernetes": {
"disable-linters": ["resource-limits"]
},
"[terraform]": {
"editor.defaultFormatter": "gamunu.opentofu"
},
"files.associations": {
".env*": "plaintext",
".gitignore": "plaintext"
}
}