Browse Source

Merge pull request #1506 from Repiteo/editorconfig

Add `.editorconfig`, consolidate `.gitattributes`
David Snopek 1 year ago
parent
commit
7abe4ca9e4
2 changed files with 18 additions and 6 deletions
  1. 16 0
      .editorconfig
  2. 2 6
      .gitattributes

+ 16 - 0
.editorconfig

@@ -0,0 +1,16 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+indent_size = 4
+indent_style = tab
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[{*.py,SConstruct}]
+indent_style = space
+
+[*.{yml,yaml}]
+indent_size = 2
+indent_style = space

+ 2 - 6
.gitattributes

@@ -1,6 +1,2 @@
-*.c eol=lf
-*.cpp eol=lf
-*.gd eol=lf
-*.tscn eol=lf
-*.cfg eol=lf
-*.godot eol=lf
+# Normalize EOL for all files that Git considers text files
+* text=auto eol=lf