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