github.com/ddev/ddev@v1.23.2-0.20240519125000-d824ffe36ff3/.editorconfig (about) 1 # EditorConfig is awesome: http://EditorConfig.org 2 3 # top-most EditorConfig file 4 root = true 5 6 # Unix-style newlines with a newline ending every file 7 [*] 8 charset = utf-8 9 end_of_line = lf 10 indent_style = space 11 # Forcing indent to 4 seems to break lots of things, like 12 # embedded yaml in markdown. 13 # indent_size = 4 14 insert_final_newline = true 15 16 # GO files 17 [*.go] 18 indent_style = tab 19 20 # Makefile 21 [Makefile] 22 indent_style = tab 23 24 # NSIS files 25 [*.{nsi,nsh}] 26 end_of_line = crlf 27 indent_size = 2