laravel .editorconfig配置详情

# 告诉插件,这是根文件,无需继续往上查找
root = true

# 匹配全部文件
[*]
# 字符集
charset = utf-8
# 结尾换行符
end_of_line = lf
# 文件结尾插入新行
insert_final_newline = true
# 缩进风格
indent_style = space
# 缩进的空格数
indent_size = 4
# 删除一行中的前后空格
trim_trailing_whitespace = true

# 匹配.md文件
[*.md]
trim_trailing_whitespace = false

# 匹配 .yml .yaml文件
[*.{yml,yaml}]
indent_size = 2

# 匹配 docker-compose.yml文件
[docker-compose.yml]
indent_size = 4

# 匹配 .js .html .blade.php .css .scss .vue文件
[*.{js,html,blade.php,css,scss,vue}]
indent_style = space
indent_size = 2

你可能感兴趣的:(laravel .editorconfig配置详情)