| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 | # http://editorconfig.orgroot = true[*]charset = utf-8# for alignment reasons the last tab may be replaced with < indent_size spaces,# which we currently can't configure hereindent_style = tabindent_size = 4end_of_line = lfinsert_final_newline = truetrim_trailing_whitespace = trueblock_comment_start = /*block_comment = *block_comment_end = */# don't change these files[{doc/**,src/include/{linux,sys}/**,testing/{hosts,tests}/**,AUTHORS,COPYING}]charset = unsetindent_style = unsetindent_size = unsetend_of_line = unsetinsert_final_newline = unsettrim_trailing_whitespace = unset# never trim whitespace in patches, everything else should not be changed[*.patch]trim_trailing_whitespace = falsecharset = unsetindent_style = unsetindent_size = unsetend_of_line = unsetinsert_final_newline = unset[{.*,NEWS,README,INSTALL,*.{gemspec.in,pod,rb,ui}}]indent_style = spaceindent_size = 2[*.{gpr,adb,ads}]indent_style = spaceindent_size = 3line_comment = --[{*.{md,gradle,xml},HACKING}]indent_style = spaceindent_size = 4[src/libcharon/plugins/vici/README.md]indent_style = tab[src/libcharon/plugins/vici/**/*.{rst,PL,pm,py}]indent_style = spaceindent_size = 4
 |