Dfmt is a formatter for D source code
Go to file
Hackerpilot ce1c20e847 Fix #100 2015-03-14 03:58:23 -07:00
libdparse@f20c701c96 Fix #96 2015-03-13 02:33:38 -07:00
src Fix #100 2015-03-14 03:58:23 -07:00
tests Fix #100 2015-03-14 03:58:23 -07:00
.editorconfig Don't use spaces for makefiles 2015-01-13 23:47:22 -08:00
.gitignore README formatting and dub addition to .gitignore 2015-01-18 00:40:44 -08:00
.gitmodules Initial commit 2015-01-11 17:50:30 +00:00
.travis.yml add .travis.yml 2015-01-17 16:56:47 +01:00
README.md Update README 2015-02-19 18:11:55 -08:00
dub.json Add dub config 2015-01-13 22:16:27 +01:00
makefile Only activate unittest in test builds 2015-02-19 18:05:01 -08:00

README.md

dfmt

dfmt is a formatter for D source code

Build Status

Status

dfmt is alpha-quality. Make backups of your files or use source control.

Building

Using Make

  • Clone the repository
  • Run git submodule update --init in the dfmt directory
  • To compile with DMD, run make in the dfmt directory. To compile with LDC, run make ldc instead. The generated binary will be placed in dfmt/bin/.

Using

By default, dfmt reads its input from stdin and writes to stdout. If a file name is specified on the command line, input will be read from the file instead, and output will be written to stdout.

Options

  • --inplace: a file name is required and the file will be edited in-place.
  • --braces=otbs: Use "The One True Brace Style", placing open braces on the same line as the previous token.
  • --braces=allman: Use "Allman Style", placing opening braces on their own line. This is the default
  • --tabs: Use tabs for indentation instead of spaces