add .vscode with recommended plugins + settings

which will give a *great* out of the box experience for folks wanting to contribute and uses VS Code
pull/4844/head
Christian Winther 2024-01-26 14:42:24 +00:00
rodzic f263dfc4e1
commit 627fffd1ce
2 zmienionych plików z 20 dodań i 0 usunięć

13
.vscode/extensions.json vendored 100644
Wyświetl plik

@ -0,0 +1,13 @@
{
"recommendations": [
"foxundermoon.shell-format",
"timonwong.shellcheck",
"jetmartin.bats",
"aaron-bond.better-comments",
"streetsidesoftware.code-spell-checker",
"editorconfig.editorconfig",
"github.vscode-github-actions",
"bmewburn.vscode-intelephense-client",
"redhat.vscode-yaml"
]
}

7
.vscode/settings.json vendored 100644
Wyświetl plik

@ -0,0 +1,7 @@
{
"shellformat.useEditorConfig": true,
"files.associations": {
".env": "shellscript",
".env.*": "shellscript"
}
}