.editorconfig 214 B

123456789101112131415
  1. root = true
  2. [*]
  3. trim_trailing_whitespace = true
  4. indent_size = tab
  5. indent_style = tab
  6. tab_width = 4
  7. end_of_line = lf
  8. insert_final_newline = true
  9. max_line_length = off
  10. charset = utf-8
  11. [*.{yml,yaml}]
  12. tab_width = 2