3 lines
100 B
Makefile
3 lines
100 B
Makefile
.PHONY: fmt
|
|
fmt:
|
|
find -type f -name "*.rs" -not -path "*target*" -exec rustfmt --edition 2018 {} \;
|