Преглед на файлове

edit settings.json to disable format on save for the repo (#2572)

Jonathan Kelley преди 1 година
родител
ревизия
d4831edcf7
променени са 1 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. 3 1
      .vscode/settings.json

+ 3 - 1
.vscode/settings.json

@@ -7,5 +7,7 @@
   "rust-analyzer.check.workspace": false,
   "rust-analyzer.check.features": "all",
   "rust-analyzer.cargo.features": "all",
-  "rust-analyzer.check.allTargets": true
+  "rust-analyzer.check.allTargets": true,
+  // we don't want the formatter to kick in while we're working on dioxus itself
+  "dioxus.formatOnSave": "disabled"
 }