settings.json 415 B

12345678910111213
  1. {
  2. "editor.formatOnSave": true,
  3. "[toml]": {
  4. "editor.formatOnSave": false
  5. },
  6. // "rust-analyzer.check.workspace": true,
  7. "rust-analyzer.check.workspace": false,
  8. "rust-analyzer.check.features": "all",
  9. "rust-analyzer.cargo.features": "all",
  10. "rust-analyzer.check.allTargets": true,
  11. // we don't want the formatter to kick in while we're working on dioxus itself
  12. "dioxus.formatOnSave": "disabled",
  13. }