When I run the command leptosfmt src/**/*.rs, it just apply on the src directory and first childs (1) directories but not on child of childs (1) directories.
--- src
|
--- *.rs # format
--- components # src/components
|
--- *.rs # format
|
--- utils # src/components/utils
|
--- *.rs # not format
Expected
I expected to format all nested *.rs files with the arguments ./**/*.rs.
Hi :+1: ,
https://github.com/bram209/leptosfmt/blob/c8b22bbeb67f17d3b78333566b366c528593c817/README.md?plain=1#L131
What's happened
When I run the command
leptosfmt src/**/*.rs
, it just apply on thesrc
directory and first childs (1) directories but not on child of childs (1) directories.Expected
I expected to format all nested
*.rs
files with the arguments./**/*.rs
.