.editorconfig 428 B

1234567891011121314151617181920212223
  1. root = true
  2. [*]
  3. indent_style = space
  4. indent_size = 4
  5. end_of_line = lf
  6. charset = utf-8
  7. trim_trailing_whitespace = true
  8. insert_final_newline = true
  9. [Makefile]
  10. indent_style = tab
  11. indent_size = unset
  12. # ignore external repositories and test inputs
  13. [tests/{unity,json-patch-tests,inputs}/*]
  14. indent_style = unset
  15. indent_size = unset
  16. end_of_line = unset
  17. charset = unset
  18. trim_trailing_whitespace = unset
  19. insert_final_newline = unset