Software /
code /
prosody
Annotate
.editorconfig @ 13192:4a107a63b0a3
editorconfig: Explicitly specify preferred charset (UTF-8)
Really should be the default everywhere by now, but doesn't hurt to be
extra explicit
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 15 Jul 2023 10:22:49 +0200 |
parent | 13191:1266efb7101c |
child | 13193:e2e4779c6790 |
rev | line source |
---|---|
13191
1266efb7101c
editorconfig: Add link to format description
Kim Alvefur <zash@zash.se>
parents:
11706
diff
changeset
|
1 # https://editorconfig.org/ |
1266efb7101c
editorconfig: Add link to format description
Kim Alvefur <zash@zash.se>
parents:
11706
diff
changeset
|
2 |
11706 | 3 root = true |
4 | |
5 [*] | |
13192
4a107a63b0a3
editorconfig: Explicitly specify preferred charset (UTF-8)
Kim Alvefur <zash@zash.se>
parents:
13191
diff
changeset
|
6 charset = utf-8 |
11706 | 7 end_of_line = lf |
8 indent_style = tab | |
9 insert_final_newline = true | |
10 trim_trailing_whitespace = true | |
11 | |
12 [CHANGES] | |
13 indent_size = 4 | |
14 indent_style = space | |
15 | |
16 [configure] | |
17 indent_size = 3 | |
18 indent_style = space | |
19 | |
20 [**.xml] | |
21 indent_size = 2 | |
22 indent_style = space |