.editorconfig 310 B

123456789101112131415
  1. # Top most EditorConfig file
  2. root = true
  3. # Unix-style newlines with a newline ending in every file
  4. # and remove any trailing whitespaces
  5. [*]
  6. end_of_line = lf
  7. charset = utf-8
  8. insert_final_newline = true
  9. trim_trailing_whitespace = true
  10. # Use tab to indent qsrc code
  11. [*.qsrc]
  12. indent_style = tab
  13. indent_size = 4