Browse Source

add 项目代码格式化工具

疯狂的狮子Li 1 year ago
parent
commit
f9298a3f41
1 changed files with 4 additions and 5 deletions
  1. 4 5
      .editorconfig

+ 4 - 5
.editorconfig

@@ -3,20 +3,19 @@ root = true
 
 # 匹配全部文件
 [*]
-# 设置字符集
-charset = utf-8
 # 缩进风格,可选space、tab
 indent_style = space
 # 缩进的空格数
 indent_size = 2
+# 设置字符集
+charset = utf-8
 # 结尾换行符,可选lf、cr、crlf
 end_of_line = lf
 # 在文件结尾插入新行
-insert_final_newline = true
-# 删除一行中的前后空格
 trim_trailing_whitespace = true
+# 删除一行中的前后空格
+insert_final_newline = true
 
-# 匹配md结尾的文件
 [*.md]
 insert_final_newline = false
 trim_trailing_whitespace = false