From 19e6cdd7c56933d304e522f9a8540386ba929898 Mon Sep 17 00:00:00 2001 From: Stefan Koch Date: Tue, 28 Nov 2017 15:37:11 +0100 Subject: [PATCH] adjust readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7aff4cf..344d0d7 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,7 @@ found in .editorconfig files. * **--outdent_attributes**: See **dfmt_outdent_attributes** below * **--space_after_cast**: See **dfmt_space_after_cast** below * **--space_before_function_parameters**: See **dfmt_space_before_function_parameters** below +* **--sort_imports**: See **sort_imports** 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 @@ -102,6 +103,7 @@ dfmt_split_operator_at_line_end | `true`, `false` | `false` | Place operators on 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_sort_imports | `true`, `false` | `false` | Sort Imports alphabetically group by root-package 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.