From 6a821c96ae0c7127cab9ae9e00b1722e29b37244 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Sun, 19 Apr 2015 21:53:59 -0700 Subject: [PATCH] Fix documentation for options --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 0eff778..1e88b67 100644 --- a/README.md +++ b/README.md @@ -42,14 +42,14 @@ max_line_length | positive integers | `120` | Supported ### dfmt-specific properties Property Name | Allowed Values | Default Value | Description --------------|----------------|---------------|------------ -dfmt_brace_style | `allman`, `otbs`, or `stroustrup` | https://en.wikipedia.org/wiki/Brace_style -dfmt_soft_max_line_length | positive integers | The formatting process will usually keep lines below this length, but they may be up to max_line_length columns long. -dfmt_outdent_labels (Not yet implemented) | `true`, `false` | Decrease the indentation of labels -dfmt_align_switch_statements (Not yet implemented) | `true`, `false` | Align labels, cases, and defaults with their enclosing switch -dfmt_outdent_attributes (Not yet implemented) | `true`, `false` | Decrease the indentation level of attributes -dfmt_split_operator_at_line_end (Not yet implemented) | `true`, `false` | Place operators on the end of the previous line when splitting lines -dfmt_space_after_cast (Not yet implemented) | `true`, `false` | Insert space after the closing paren of a `cast` expression -dfmt_space_after_keywords (Not yet implemented) | `true`, `false` | Insert space after `if`, `while`, `foreach`, etc, and before the `(` +dfmt_brace_style | `allman`, `otbs`, or `stroustrup` | `stroustrup` | https://en.wikipedia.org/wiki/Brace_style +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_outdent_labels (Not yet implemented) | `true`, `false` | `true` | Decrease the indentation of labels +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 (Not yet implemented) | `true`, `false` | `false` | Place operators on the end of the previous line when splitting lines +dfmt_space_after_cast (Not yet implemented) | `true`, `false` | `false` | 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 `(` ## Terminology * Braces - `{` and `}`