dprint
dprint copied to clipboard
Pluggable and configurable code formatting platform written in Rust.
Throughout dprint core's initial exploration, the API remained largely the same while performance improvements happened around it. A big win was to use a bump allocator, but this was done...
I believe it would be trivial to maintain the formatting for a section if a certain condition holds (such as the current column... or maybe only this). This could be...
More just a note about in progress plugins to contribute to. Please don't submit a PR for this as I will do it later.
dprint version: 0.22.2 dprint-plugin-typescript version: 0.64.0 Hey there! We're currently using `dprint` to format the starship codebase, and I've stumbled across what I think is a bug. When using dprint...
As title. I accidentally published 0.20.1 as 0.21.1 It would be nice to push this down to the plugins as well.
Now that we have https://github.com/dprint/dprint-vscode and https://github.com/dprint/dprint-intellij and other editors support, it makes sense to have a way to format only portion of the file. Possible use cases: 1. User...
the https://github.com/dprint/dprint-plugin-markdown plugin is using other available plugins to format embedded code, e.g.: ````md some markdown ```ts function a () {} ``` more markdown ```` would: 1. only reformat the...
To support storing plugins in a global configuration, it might be nice for people to write the following: ```json { "plugins": [ "https://plugins.dprint.dev/typescript-latest.wasm" ] } ``` ...then that would be...
I find myself adding many `dprint.json` files that consist more or less of the standard dprint configuration. One of the biggest value propositions of gofmt, rustfmt, Prettier, StandardJS, YAPF, and...
Hi! Thank you for a wonderful tool. I am trying it out as an alternative to Prettier (and wrapper!), and enjoying it. I use the [pre-commit](https://pre-commit.com/) framework to run tools...