123456789101112131415161718 |
- root = true
- [*]
- charset = utf-8
- indent_style = space
- indent_size = 2
- insert_final_newline = false
- trim_trailing_whitespace = false
- curly_bracket_next_line = false # 大括号不另起一行
- [*.js] # 对所有的 js 文件生效
- quote_type = single # 字符串使用单引号
- [*.{html,less,css,json}] # 对所有 html, less, css, json 文件生效
- quote_type = double # 字符串使用双引号
- [package.json] # 对 package.json 生效
- indent_size = 2 # 使用2个空格缩进
|