From da1914f6120fb1b627dcdc6ba5e3d5e9af221fa2 Mon Sep 17 00:00:00 2001 From: GenZmeY Date: Mon, 1 May 2023 23:03:19 +0300 Subject: [PATCH] add .editorconfig --- .editorconfig | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e982455 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,35 @@ +root = true + +# Global +[*] +indent_style = unset +indent_size = 4 +tab_width = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +# Unreal Engine 3 / Source +[*.{uc,uci}] +indent_style = tab + +[*.upkg] + +# Unreal Engine 3 / i18n +[*.{chn,cht,cze,dan,deu,dut,esl,esn,fra,frc,hun,int,ita,jpn,kor,pol,por,ptb,rus,tur,ukr}] +charset = utf-16le + +# Other +[*.md] +trim_trailing_whitespace = false + +[*.{txt,cfg}] +insert_final_newline = unset + +[*.yml] +indent_style = space +indent_size = 2 + +[.gitignore] +insert_final_newline = unset