Pārlūkot izejas kodu

:hammer: add php formatter plugin

Jeremy Zheng 3 gadi atpakaļ
vecāks
revīzija
defa868722
2 mainītis faili ar 4 papildinājumiem un 1 dzēšanām
  1. 1 0
      .vscode/extensions.json
  2. 3 1
      .vscode/settings.json

+ 1 - 0
.vscode/extensions.json

@@ -4,6 +4,7 @@
     "ms-python.python",
     "golang.go",
     "rust-lang.rust-analyzer",
+    "bmewburn.vscode-intelephense-client",
     "redhat.ansible",
     "redhat.vscode-xml",
     "redhat.vscode-yaml",

+ 3 - 1
.vscode/settings.json

@@ -9,7 +9,6 @@
     "source.fixAll.eslint": true
   },
   "editor.defaultFormatter": "esbenp.prettier-vscode",
-  "rust-analyzer.cargo.runBuildScripts": true,
   // https://code.visualstudio.com/docs/setup/linux#_visual-studio-code-is-unable-to-watch-for-file-changes-in-this-large-workspace-error-enospc
   "files.watcherExclude": {
     "**/.git/**": true,
@@ -29,5 +28,8 @@
   },
   "[python]": {
     "editor.defaultFormatter": "ms-python.python"
+  },
+  "[php]": {
+    "editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
   }
 }