From: Sandro Santilli Date: Mon, 29 May 2017 18:16:59 +0000 (+0000) Subject: Request tab indentation by default for SQL files X-Git-Tag: 2.4.0alpha~81 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6ced649530dab02590729512b658c5d292971c84;p=postgis Request tab indentation by default for SQL files Still keep sfcgal.sql and topology SQL files with spaces, to reflect the current state. See #3767 git-svn-id: http://svn.osgeo.org/postgis/trunk@15413 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/.editorconfig b/.editorconfig index ccbdfd0cd..eccd28ed4 100644 --- a/.editorconfig +++ b/.editorconfig @@ -17,6 +17,10 @@ trim_trailing_whitespace = false [*.{c,h}] indent_style = tab +# SQL files want tab indentation +[*.{sql,sql.in}] +indent_style = tab + # topology C files want space indentation [topology/*.{c,h}] indent_style = space @@ -29,6 +33,10 @@ indent_style = space [topology/**.{sql,sql.in}] indent_style = space +# postgis/sfcgal.sql.in wants space indentation +[postgis/sfcgal.sql.in] +indent_style = space + # Makefiles want tab indentation [{Makefile.in,Makefile,GNUmakefile.in}] indent_style = tab