Skip to content

Commit

Permalink
feat: Don't use opininated rustfmt.toml by default ✨ (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdheepak committed Dec 31, 2023
1 parent 5789e5c commit ecbed1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion async/template/hooks/pre-get-repository.rhai
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ if !variable::is_set("crossterm_io") {
let use_rustfmt = if variable::is_set("use_rustfmt") {
variable::get("use_rustfmt")
} else {
variable::prompt("Use an opinionated rustfmt.toml file?", "true", ["true", "false"])
variable::prompt("Use an opinionated rustfmt.toml file?", "false", ["true", "false"])
};

if use_rustfmt == "true" || use_rustfmt == true {
Expand Down

0 comments on commit ecbed1e

Please sign in to comment.