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 8root = true 9 10# Default settings: 11# Use 4 spaces as indentation 12[*] 13indent_style = space 14indent_size = 4 15insert_final_newline = true 16trim_trailing_whitespace = true 17 18[imstb_*] 19indent_size = 3 20trim_trailing_whitespace = false 21 22[Makefile] 23indent_style = tab 24indent_size = 4 25