1
0
Fork 0

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
This commit is contained in:
Christian Winther 2024-01-26 14:42:24 +00:00
parent f263dfc4e1
commit 627fffd1ce
2 changed files with 20 additions and 0 deletions

13
.vscode/extensions.json vendored Normal file
View File

@ -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 Normal file
View File

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