.editorconfig 257 B

1234567891011121314151617
  1. root = true
  2. [*]
  3. charset = utf-8
  4. end_of_line = crlf
  5. insert_final_newline = true
  6. trim_trailing_whitespace = true
  7. [*.{cpp,h}]
  8. indent_style = space
  9. indent_size = 4
  10. tab_width = 4
  11. max_line_length = 100
  12. [*.{md,ps1,vcxproj}]
  13. indent_style = space
  14. indent_size = 2