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
dx fmt
See https://dioxuslabs.com/blog/release-030#autoformatting
The dx fmt command in the dev shell of #79 can be used to format the render! HTML DSL functions, but it is pretty limited.
render!
The PR's justfile defines just fmt like this:
just fmt
# Auto-format the source tree fmt: treefmt find src/app/ -name \*.rs | grep -v state.rs | xargs -n 1 dx fmt -f
Our goal here is to remove that line, so that just fmt runs nothing but treefmt.
treefmt
To do this, two things need to happen:
pkgs.dioxus-cli
leptosfmt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
See https://dioxuslabs.com/blog/release-030#autoformatting
The
dx fmt
command in the dev shell of #79 can be used to format therender!
HTML DSL functions, but it is pretty limited.The PR's justfile defines
just fmt
like this:Our goal here is to remove that line, so that
just fmt
runs nothing buttreefmt
.To do this, two things need to happen:
pkgs.dioxus-cli
leptosfmt
for the aforementioned PRThe text was updated successfully, but these errors were encountered: