DFMT all

Dfmt is the standard tool for forcing a style convention on d language files, and can be downloaded as part of the standard tooling packages. The following bash command will fire dfmt on all .d files recursively. It's always handy to have around.


find * -name '*.d'  -exec dub run dfmt -- --inplace {} \;