1# To use this config on you editor, follow the instructions at: 2# http://editorconfig.org 3 4root = true 5 6[*] 7charset = utf-8 8insert_final_newline = true 9tab_width = 8 10 11[*.{c,h,cpp,hpp,cc,hh}] 12indent_style = space 13indent_size = 3 14max_line_length = 78 15 16[{Makefile*,*.mk}] 17indent_style = tab 18 19[*.py] 20indent_style = space 21indent_size = 4 22 23[*.yml] 24indent_style = space 25indent_size = 2 26 27[*.rst] 28indent_style = space 29indent_size = 3 30 31[*.patch] 32trim_trailing_whitespace = false 33 34[{meson.build,meson_options.txt}] 35indent_style = space 36indent_size = 2 37 38 39[*.ps1] 40indent_style = space 41indent_size = 2 42