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

This commit is contained in:
Jonathan Kelley 2024-07-02 12:18:25 -07:00 committed by GitHub
parent 022e4ad203
commit d4831edcf7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"
}