commit
2145766d89
|
@ -82,7 +82,7 @@ insert_final_newline | | `true` | Not supported. `dfmt` always inserts a final n
|
|||
charset | | `UTf-8` | Not supported. `dfmt` only works correctly on UTF-8.
|
||||
indent_style | `tab`, `space` | `space` | [See EditorConfig documentation.](https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#indent_style)
|
||||
indent_size | positive integers | `4` | [See EditorConfig documentation.](https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#indent_size)
|
||||
tab_width | positive integers | `8` | [See EditorConfig documentation.](https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#tab_width)
|
||||
tab_width | positive integers | `4` | [See EditorConfig documentation.](https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#tab_width)
|
||||
trim_trailing_whitespace | | `true` | Not supported. `dfmt` does not emit trailing whitespace.
|
||||
max_line_length | positive integers | `120` | [See EditorConfig documentation.](https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#max_line_length)
|
||||
### dfmt-specific properties
|
||||
|
|
|
@ -30,7 +30,7 @@ bool isTempIndent(IdType type) pure nothrow @nogc @safe
|
|||
struct IndentStack
|
||||
{
|
||||
/**
|
||||
* Get the indent size at the most recent occurence of the given indent type
|
||||
* Get the indent size at the most recent occurrence of the given indent type
|
||||
*/
|
||||
int indentToMostRecent(IdType item) const
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue