1# EditorConfig is a file format and collection of text editor plugins 2# for maintaining consistent coding styles between different editors 3# and IDEs. Most popular editors support this either natively or via 4# plugin. 5# 6# Check https://editorconfig.org for details. 7 8root = true 9 10[*] 11end_of_line = lf 12insert_final_newline = true 13charset = utf-8 14indent_style = space 15 16[Makefile*] 17indent_style = tab 18indent_size = 8 19file_type_emacs = makefile 20 21[*.[ch]] 22indent_style = tab 23indent_size = 8 24 25[*.py] 26indent_size = 4 27 28[meson.build] 29indent_style = space 30indent_size = 2 31