.editorconfig 220 B

1234567891011121314
  1. ; top-most EditorConfig file
  2. root = true
  3. # All files.
  4. [*]
  5. end_of_line = LF
  6. indent_style = space
  7. indent_size = 4
  8. charset = utf-8
  9. trim_trailing_whitespace = true
  10. insert_final_newline = true
  11. [.travis.yml]
  12. indent_size = 2