.editorconfig 302 B

123456789101112131415
  1. # top-most EditorConfig file
  2. root = true
  3. # Unix-style newlines with a newline ending every file
  4. [*]
  5. end_of_line = lf
  6. insert_final_newline = true
  7. # Matches multiple files with brace expansion notation
  8. # Set default charset
  9. [*]
  10. charset = utf-8
  11. # Tab indentation (no size specified)
  12. indent_style = tab