Dfmt is a formatter for D source code
Go to file
Hackerpilot e233912a34 Fix #114 2015-03-31 15:08:44 -07:00
libdparse@617b7c6f2c Update libdparse 2015-03-20 00:52:12 -07:00
src/dfmt Fix #114 2015-03-31 15:08:44 -07:00
tests Fix #114 2015-03-31 15:08:44 -07:00
.editorconfig Don't use spaces for makefiles 2015-01-13 23:47:22 -08:00
.gitignore Refactoring 2015-03-20 00:53:57 -07: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
LICENSE.txt Add license file 2015-03-20 00:50:23 -07:00
README.md Add descriptions of characters used in dfmt 2015-03-24 14:51:35 -07:00
build.bat Fix #16 2015-03-17 10:35:06 -07:00
dub.json Add license in dub.json 2015-03-20 00:51:47 -07:00
makefile Improve line wrapping algorithm 2015-03-22 23:40:23 -07:00

README.md

dfmt Build Status

dfmt is a formatter for D source code

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.

Terminology

  • Braces - { and }
  • Brackets - [ and ]
  • Parenthesis / Parens - ( and )