Fix release date
[geos.git] / .editorconfig
blob29f4b3e73bc791e8bdd7ab5b8178e15528d16c9d
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