Dfmt is a formatter for D source code
Go to file
Bastiaan Veelo 5274e5531e
Merge pull request #1 from dlang-community/master
Allow comments in selective imports. (#403)
2018-10-29 12:04:52 +01:00
bash-completion/completions Fix pkg file to put bash-completion into the right place 2018-02-20 10:18:47 +01:00
beaver@82f8c8f6bb Add Beaver as submodule 2018-01-25 18:47:17 +01:00
libdparse@f8460d0d35 Updated libdparse to v0.9.10. 2018-10-13 12:59:49 +00:00
makd@d735c1df67 Build debain package using makd 2017-11-06 11:37:29 +01:00
pkg Fix pkg file to put bash-completion into the right place 2018-02-20 10:18:47 +01:00
src/dfmt Allow comments in selective imports. (#403) 2018-10-19 01:45:52 +02:00
stdx-allocator@b7778fd6bf Update stdx alloc for future removal of std.c (#357) 2018-05-26 20:04:38 +02:00
tests Allow comments in selective imports. (#403) 2018-10-19 01:45:52 +02:00
.editorconfig Use tabs for makefiles 2015-04-23 16:47:03 -07:00
.gitignore Add bash completion support. Fix #218 2016-01-19 20:10:15 -08:00
.gitmodules Switch to use the frozen stdx-allocator 2018-02-11 15:20:26 +01:00
.travis.sh fix #236 - Allow constraints to be indented by a single tab (#337) 2018-03-02 16:26:54 +01:00
.travis.yml deactivate testing with DMD nightly (#383) 2018-09-08 13:40:50 +02:00
LICENSE.txt Add license file 2015-03-20 00:50:23 -07:00
README.md fix #236 - Allow constraints to be indented by a single tab (#337) 2018-03-02 16:26:54 +01:00
appveyor.yml Remove dmd-nightly + dmd-beta from AppVeyor 2018-02-02 11:34:20 +01:00
beaver.Dockerfile Use beaver to deploy the xenial-package 2018-01-25 18:47:32 +01:00
build.bat Use automatic versioning (#379) 2018-09-19 15:16:41 +02:00
dub.json Updated libdparse to v0.9.10. 2018-10-13 12:59:49 +00:00
makefile Use automatic versioning (#379) 2018-09-19 15:16:41 +02:00
release-windows.sh Use automatic versioning (#379) 2018-09-19 15:16:41 +02:00
release.sh Use automatic versioning (#379) 2018-09-19 15:16:41 +02:00

README.md

dfmt Build Status

dfmt is a formatter for D source code

Status

dfmt is beta quality. Make backups of your files or use source control when using the --inplace option.

Building

Using Make

  • Clone the repository
  • Run git submodule update --init --recursive 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/.

Installing with DUB

> dub fetch --version='~master' dfmt && dub run dfmt -- -h

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.

dfmt uses EditorConfig files for configuration. If you run dfmt on a source file it will look for .editorconfig files that apply to that source file. If no file is specified on the command line, dfmt will look for .editorconfig files that would apply to a D file in the current working directory. Command line options can be used instead of .editorconfig files, or to override options found in .editorconfig files.

Options

  • --help | -h: Display command line options
  • --inplace | -i: A file name is required and the file will be edited in-place.
  • --align_switch_statements: See dfmt_align_switch_statements below
  • --brace_style: See brace_style below
  • --end_of_line: See end_of_line below
  • --indent_size: See indent_size below
  • --indent_style | -t: See indent_style below
  • --max_line_length: See max_line_length below
  • --soft_max_line_length: See dfmt_soft_max_line_length below
  • --outdent_attributes: See dfmt_outdent_attributes below
  • --single_template_constraint_indent: See dfmt_template_constraint_style below
  • --space_after_cast: See dfmt_space_after_cast below
  • --space_before_function_parameters: See dfmt_space_before_function_parameters below
  • --split_operator_at_line_end: See dfmt_split_operator_at_line_end below
  • --tab_width: See tab_width below
  • --selective_import_space: See dfmt_selective_import_space below
  • --compact_labeled_statements: See dfmt_compact_labeled_statements below
  • --template_constraint_style: See dfmt_template_constraint_style below

Example

dfmt --inplace --space_after_cast=false --max_line_length=80 \
    --soft_max_line_length=70 --brace_style=otbs file.d

Disabling formatting

Formatting can be temporarily disabled by placing the comments // dfmt off and // dfmt on around code that you do not want formatted.

void main(string[] args)
{
    bool optionOne, optionTwo, optionThree;

    // dfmt has no way of knowing that "getopt" is special, so it wraps the
    // argument list normally
	getopt(args, "optionOne", &optionOne, "optionTwo", &optionTwo, "optionThree", &optionThree);

    // dfmt off
    getopt(args,
        "optionOne", &optionOne,
        "optionTwo", &optionTwo,
        "optionThree", &optionThree);
    // dfmt on
}

Configuration

dfmt uses EditorConfig configuration files. dfmt-specific properties are prefixed with dfmt_.

Standard EditorConfig properties

Property Name Allowed Values Default Value Description
end_of_line cr, crlf and lf lf See EditorConfig documentation.
insert_final_newline true Not supported. dfmt always inserts a final newline.
charset UTF-8 Not supported. dfmt only works correctly on UTF-8.
indent_style tab, space space See EditorConfig documentation.
indent_size positive integers 4 See EditorConfig documentation.
tab_width positive integers 4 See EditorConfig documentation.
trim_trailing_whitespace true Not supported. dfmt does not emit trailing whitespace.
max_line_length positive integers 120 See EditorConfig documentation.

dfmt-specific properties

Property Name Allowed Values Default Value Description
dfmt_brace_style allman, otbs, or stroustrup allman See Wikipedia
dfmt_soft_max_line_length positive integers 80 The formatting process will usually keep lines below this length, but they may be up to max_line_length columns long.
dfmt_align_switch_statements (Not yet implemented) true, false true Align labels, cases, and defaults with their enclosing switch.
dfmt_outdent_attributes (Not yet implemented) true, false true Decrease the indentation level of attributes.
dfmt_split_operator_at_line_end true, false false Place operators on the end of the previous line when splitting lines.
dfmt_space_after_cast true, false true Insert space after the closing paren of a cast expression.
dfmt_space_after_keywords (Not yet implemented) true, false true Insert space after if, while, foreach, etc, and before the (.
dfmt_space_before_function_parameters true, false false Insert space before the opening paren of a function parameter list.
dfmt_selective_import_space true, false true Insert space after the module name and before the : for selective imports.
dfmt_compact_labeled_statements true, false true Place labels on the same line as the labeled switch, for, foreach, or while statement.
dfmt_template_constraint_style conditional_newline_indent conditional_newline always_newline always_newline_indent conditional_newline_indent Control the formatting of template constraints.
dfmt_single_template_constraint_indent true, false false Set if the constraints are indented by a single tab instead of two. Has only an effect for if indentation style if set to always_newline_indent or conditional_newline_indent.

Terminology

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