imgui

FORK: Dear ImGui: Bloat-free Graphical User interface for C++ with minimal dependencies
git clone https://git.neptards.moe/neptards/imgui.git
Log | Files | Refs

.editorconfig (788B)


      1 # See http://editorconfig.org to read about the EditorConfig format.
      2 # - In theory automatically supported by VS2017+ and most common IDE or text editors.
      3 # - In practice VS2019 stills gets trailing whitespaces wrong :(
      4 #   - Suggest install to trim whitespaces: https://marketplace.visualstudio.com/items?itemName=MadsKristensen.TrailingWhitespaceVisualizer
      5 #   - Alternative for older VS2010 to VS2015: https://marketplace.visualstudio.com/items?itemName=EditorConfigTeam.EditorConfig
      6 
      7 # top-most EditorConfig file
      8 root = true
      9 
     10 # Default settings:
     11 # Use 4 spaces as indentation
     12 [*]
     13 indent_style = space
     14 indent_size = 4
     15 insert_final_newline = true
     16 trim_trailing_whitespace = true
     17 
     18 [imstb_*]
     19 indent_size = 3
     20 trim_trailing_whitespace = false
     21 
     22 [Makefile]
     23 indent_style = tab
     24 indent_size = 4