ADDED .editorconfig Index: .editorconfig ================================================================== --- /dev/null +++ .editorconfig @@ -0,0 +1,20 @@ +# Rules here are following TIP 247: Tcl/Tk Engineering Manual +# http://www.tcl.tk/cgi-bin/tct/tip/247 + +# Topmost EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true + +# Matches multiple files with brace expansion notation +# Set default charset +[*.{c,h}] +charset = utf-8 +indent_style = space +indent_size = 4 +tab_width = 8 +trim_trailing_whitespace = true +