diff options
Diffstat (limited to '.editorconfig')
| -rw-r--r-- | .editorconfig | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..2dc0099 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +# http://editorconfig.org/ + +# Tabs are preferred where possible; this is the only accessible choice + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = tab +trim_trailing_whitespace = true + +[*.rst] +indent_style = unset +indent_size = unset + +# Spaces are practically required for Nix C++ as magic strings won’t work +[*.nix] +indent_style = space +indent_size = 3 |
