.editorconfig 234 B

12345678910111213141516
  1. root = true
  2. [*]
  3. charset = utf-8
  4. end_of_line = lf
  5. insert_final_newline = true
  6. # 使用 Tab 缩进;显示宽度 2
  7. indent_style = tab
  8. indent_size = 2
  9. tab_width = 2
  10. [{package.json,*.yml,*.yaml}]
  11. indent_style = space
  12. indent_size = 2