diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2017-07-23 23:23:36 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2017-07-23 23:23:36 +0200 |
| commit | 9f8e6148f15d7b8bc446fde6b8d2a102843a5a59 (patch) | |
| tree | 1f7b7c17899fae6d5dc0d67fe98626f3168798cb | |
| parent | 9c6084163a6d061d88f597540500b7fb78c5a9a8 (diff) | |
Add .editorconfig file
This change adds an .editorconfig file for universal editor
configuration for the project.
| -rw-r--r-- | .editorconfig | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..29e7b14b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# EditorConfig helps developers define and maintain consistent +# coding styles between different editors and IDEs +# editorconfig.org +root = true + +[*] +indent_style = tab +indent_size = 4 + +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false +indent_style = space |
