.editorconfig 438 B

12345678910111213141516171819202122
  1. # EditorConfig for Spring Security
  2. # see https://github.com/spring-projects/spring-security/blob/master/CONTRIBUTING.md#mind-the-whitespace
  3. root = true
  4. [*]
  5. end_of_line = lf
  6. trim_trailing_whitespace = true
  7. insert_final_newline = true
  8. max_line_length = 120
  9. [*.java]
  10. indent_style = tab
  11. indent_size = 4
  12. charset = latin1
  13. continuation_indent_size = 8
  14. [*.xml]
  15. indent_style = tab
  16. indent_size = 4
  17. charset = latin1
  18. continuation_indent_size = 8