From 9531b6adb9b1caf866a93561a64f5f74605ab204 Mon Sep 17 00:00:00 2001 From: strk Date: Tue, 28 Mar 2017 19:46:12 +0000 Subject: [PATCH] Use spaces under tests/unit git-svn-id: http://svn.osgeo.org/geos/trunk@4386 5242fede-7e19-0410-aef8-94bd7d2200fb --- tests/unit/.editorconfig | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 tests/unit/.editorconfig diff --git a/tests/unit/.editorconfig b/tests/unit/.editorconfig new file mode 100644 index 00000000..57c67047 --- /dev/null +++ b/tests/unit/.editorconfig @@ -0,0 +1,31 @@ +# http://editorconfig.org + +# top-most EditorConfig file +root = false + +# every file needs these +[*] +charset = utf-8 +end_of_line = lf +trim_trailing_whitespace = true +insert_final_newline = true + +# C++ files want tab indentation +[*.{h,cpp}] +indent_style = space +indent_size = 4 + +# Makefiles want tab indentation +[Makefile.am] +indent_style = tab +indent_size = 2 + +# CMake configuration files +[CMakeLists.txt] +indent_style = space +indent_size = 2 + +# CMake modules +[*.cmake] +indent_style = space +indent_size = 2 -- 2.11.4.GIT