editorconfig: Fix charset name #9070

According to
https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
the possible values of the charset property are "latin1", "utf-8",
"utf-16be", "utf-16le", or "utf-8-bom" (case insensitive), not "utf_8"

It breaks https://github.com/sgur/vim-editorconfig/ for example.
This commit is contained in:
Matěj Cepl 2018-09-30 17:02:19 +02:00 committed by Justin M. Keyes
parent 4c57169745
commit 84fcba9b01
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
charset = utf_8
charset = utf-8
[{Makefile,**/Makefile,runtime/doc/*.txt}]
indent_style = tab