.editorconfig 200 B

12345678910111213
  1. root = true
  2. [*]
  3. end_of_line = lf
  4. # Matches multiple files with brace expansion notation
  5. [*.{c,cpp,hpp,h}]
  6. charset = utf-8
  7. indent_style = tab
  8. indent_size = 4
  9. [*.md]
  10. trim_trailing_whitespace = false