首页 > 其他分享 >代码规范配置editorconfig

代码规范配置editorconfig

时间:2023-02-01 17:45:06浏览次数:43  
标签:trim 文件 indent whitespace trailing 代码 规范 editorconfig true

root = true

[*] # 表示所有文件适用
charset = utf-8 # 设置文件字符集为utf-8
indent_style = space # 缩进风格
indent_size = 2 # 缩进大小
end_of_line = lf # 控制换行类型
insert_final_newline = true # 始终在文件末尾插入一个新行
trim_trailing_whitespace = true # 去除末尾的任意空白字符

[*.md] # 表示仅md文件适用以下规则
max_line_length = off
trim_trailing_whitespace = false

  

标签:trim,文件,indent,whitespace,trailing,代码,规范,editorconfig,true
From: https://www.cnblogs.com/fdxjava/p/17083657.html

相关文章