No Description

.editorconfig 372B

123456789101112131415161718
  1. # EditorConfig is awesome: http://EditorConfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. charset = utf-8
  5. # Get rid of whitespace to avoid diffs with a bunch of EOL changes
  6. trim_trailing_whitespace = true
  7. # Unix-style newlines with a newline ending every file
  8. [*]
  9. end_of_line = lf
  10. insert_final_newline = true
  11. # PHP-Files
  12. [*.php]
  13. indent_style = space
  14. indent_size = 4