.editorconfig 596 B

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