| 12345678910111213141516171819202122232425262728293031323334 | # http://editorconfig.orgroot = true[*]charset = utf-8end_of_line = lfinsert_final_newline = truetrim_trailing_whitespace = true[*.{py,rst,ini}]indent_size = 4indent_style = space[*.py]line_length=120multi_line_output=3[*.{css,html,js,json,sass,scss,yml,yaml}]indent_size = 2indent_style = space[*.md]indent_size = 4indent_style = spacetrim_trailing_whitespace = false[justfile]indent_size = 4indent_style = space[{Makefile,modd.conf}]indent_style = tab
 |