diff options
author | Vicent Marti <vicent@github.com> | 2014-09-03 00:15:47 +0200 |
---|---|---|
committer | Vicent Marti <vicent@github.com> | 2014-09-03 00:15:47 +0200 |
commit | 6f3082d90fa70144ed4f5ae75c75366fce0a4f5e (patch) | |
tree | 358f80baae7b29848384060d3ec9cb8f6fba838f | |
parent | 0ac9f9a0c730d6dfc1a897c27070252d354ec456 (diff) | |
parent | 098bb9dfb9b229498f0def634bcada0b76b405cd (diff) | |
download | libgit2-6f3082d90fa70144ed4f5ae75c75366fce0a4f5e.tar.gz |
Merge pull request #2550 from KindDragon/patch-2
.editorconfig added to repository
-rw-r--r-- | .editorconfig | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..be59274e8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +; Check http://editorconfig.org/ for more informations +; Top-most EditorConfig file +root = true + +; tab indentation +[*] +indent_style = tab +trim_trailing_whitespace = true +insert_final_newline = true + +; 4-column space indentation +[*.md] +indent_style = space +indent_size = 4 |