From 72561c78a490875d8db9097b4eaa244cc1c34c55 Mon Sep 17 00:00:00 2001 From: zyx <1029606625@qq.com> Date: Tue, 5 Jul 2022 00:04:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0EditorConfig=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=EF=BC=8C=E4=BD=BFVS=E4=BF=9D=E5=AD=98=E7=9A=84?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E9=BB=98=E8=AE=A4=E7=BC=96=E7=A0=81=E4=B8=BA?= =?UTF-8?q?UTF-8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .editorconfig | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..95c6aaa --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +root = true # 所在目录是项目根目录,此目录及子目录下保存的文件都会生效 + +[*] # 对于所有文件 +indent_style = tab # 缩进风格 +tab_width = 4 # 缩进宽度 +charset = utf-8 # 文件编码格式 +end_of_line = crlf # 行尾格式,Windows一般为CRLF,Linux一般为LF,根据需要更改 +insert_final_newline = true #文件结尾添加换行符,以防警 \ No newline at end of file