xref: /dokuwiki/.editorconfig (revision ab9790ca81397622fcfd58faf56a69b68bd36257)
1; http://editorconfig.org/
2
3root = true
4
5[*]
6indent_style = space
7indent_size = 4
8end_of_line = lf
9charset = utf-8
10trim_trailing_whitespace = true
11insert_final_newline = true
12
13[*.{yml,yaml}]
14indent_size = 2
15
16[{vendor,inc/phpseclib}/**]
17; Use editor default (possible autodetection).
18indent_style =
19indent_size =
20end_of_line =
21trim_trailing_whitespace =
22insert_final_newline =
23