.editorconfig 373 B

12345678910111213141516171819
  1. root = true # 所在目录是项目根目录,此目录及子目录下保存的文件都会生效
  2. #对于所有文件
  3. [*]
  4. #缩进风格
  5. indent_style = space
  6. indent_size = 4
  7. translate_tabs_to_spaces = true
  8. #文件编码格式
  9. charset = utf-8-bom
  10. # 行尾格式,Windows一般为CRLF,Linux一般为LF
  11. end_of_line = lf
  12. #文件结尾添加换行符,以防警告
  13. insert_final_newline = true
  14. trim_trailing_whitespace = true