settings.json 630 B

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