trevyn
trevyn
Ok, it looks like this is totally broken with the latest SQLite; they've done something with long double constants that make clang bring in the f128 builtins even with `-DLONGDOUBLE_TYPE=float`....
> I would love to see this! Can I somehow help? So the current status is that we need to resolve the implementations of the 6 builtins carlsverre [mentioned](https://github.com/rusqlite/rusqlite/pull/1010#issuecomment-1758124732). I...
No change. The issue happens before run-time, unfortunately.
My personal opinion is that there should be default formatting applied when it makes sense (as with all other Rust code), but as long as there is an option for...
Can you provide an example of a macro invocation body that parses as valid Rust code that would not make sense to format as Rust code?
@dhardy Your second example has an unnamed `struct {`, so is not valid Rust and therefore intentionally unformatted. A version of your first example is in the test suite; it...
An “aggressive” vs “conservative” setting would make sense to me.🤪
It's off by default now. This worked for me: ``` cargo run --bin rustfmt -- --config format_brace_macros=true sample1.rs ``` >But my other hacks would need a custom (or slightly more...
> > but it seems rustfmt is in a bit of a purgatory at the moment. > > Could you expand on this statement? If you're implying that rustfmt isn't...