We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version: 0.47.4
I have a dprint.jsonc that looks like this
dprint.jsonc
{ "toml": { "lineWidth": 80 }, "excludes": [], "plugins": ["https://plugins.dprint.dev/toml-0.6.3.wasm"] }
and a Cargo.toml file that looks like this.
[package] name = "playground" version = "0.1.0" edition = "2021" [dependencies] sqlx = { version = "0.8.2", default-features = false, features = ["chrono", "macros", "postgres", "runtime-tokio-rustls", "uuid"] }
Given the 80 character line width, I would expect dprint to reformat the sqlx line to
sqlx
sqlx = { version = "0.8.2", default-features = false, features = [ "chrono", "macros", "postgres", "runtime-tokio-rustls", "uuid", ] }
However, it is kept as is. This seems like unintended behavior?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version: 0.47.4
I have a
dprint.jsonc
that looks like thisand a Cargo.toml file that looks like this.
Given the 80 character line width, I would expect dprint to reformat the
sqlx
line toHowever, it is kept as is. This seems like unintended behavior?
The text was updated successfully, but these errors were encountered: