1
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
Christian Winther 1 жил өмнө
parent
commit
627fffd1ce

+ 13 - 0
.vscode/extensions.json

@@ -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 - 0
.vscode/settings.json

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