Explorar el Código

EditorConfig: Further tweaks (#2038)

omar hace 6 años
padre
commit
f2c92808f8
Se han modificado 2 ficheros con 8 adiciones y 0 borrados
  1. 7 0
      .editorconfig
  2. 1 0
      docs/CHANGELOG.txt

+ 7 - 0
.editorconfig

@@ -8,3 +8,10 @@ root = true
 [*]
 indent_style = space
 indent_size = 4
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+# Makefile
+[Makefile]
+indent_style = tab
+indent_size = 4

+ 1 - 0
docs/CHANGELOG.txt

@@ -34,6 +34,7 @@ HOW TO UPDATE?
 -----------------------------------------------------------------------
 
 Other Changes:
+- Added .editorconfig file for text editors to standardize using spaces. (#2038) [@kudaba]
 - ImDrawList: Fixed AddCircle(), AddCircleFilled() angle step being off, which was visible when drawing a "circle"
   with a small number of segments (e.g. an hexagon). (#2287) [@baktery]
 - Fonts: imgui_freetype: Added support for imgui allocators + custom FreeType only SetAllocatorFunctions. (#2285) [@Vuhdo]