CMake: Use CMAKE_CXX_STANDARD to require C++98
[geos.git] / .editorconfig
blob3ae8a8dce9367a212693d84e45d1a5c018dbaecc
1 # http://editorconfig.org
3 # top-most EditorConfig file
4 root = true
6 # every file needs these
7 [*]
8 charset = utf-8
9 end_of_line = lf
10 trim_trailing_whitespace = true
11 insert_final_newline = true
13 # C++ files want tab indentation
14 [*.{h,cpp}]
15 indent_style = tab
16 indent_size = 2
18 # Makefiles want tab indentation
19 [Makefile.am]
20 indent_style = tab
21 indent_size = 2
23 # YML files want space indentation
24 [*.yml]
25 indent_style = space
26 indent_size = 2
28 # Visual-C files want carriage returns too
29 [*.vc]
30 end_of_line = crlf
32 # CMake configuration files
33 [CMakeLists.txt]
34 indent_style = space
35 indent_size = 2
37 # CMake modules
38 [*.cmake]
39 indent_style = space
40 indent_size = 2