.editorconfig 258 B

123456789101112131415161718
  1. # https://editorconfig.org/
  2. root = true
  3. [*]
  4. tab_width = 3
  5. indent_style = space
  6. indent_size = 3
  7. insert_final_newline = true
  8. trim_trailing_whitespace = true
  9. end_of_line = lf
  10. charset = utf-8
  11. [*.{yaml,yml}]
  12. tab_width = 2
  13. indent_style = space
  14. indent_size = 2