Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

36 lines
677 B

  1. # This file is the top-most EditorConfig file
  2. root = true
  3. # All Files
  4. [*]
  5. charset = utf-8
  6. end_of_line = lf
  7. indent_style = tab
  8. indent_size = 4
  9. insert_final_newline = true
  10. trim_trailing_whitespace = true
  11. #########################
  12. # File Extension Settings
  13. #########################
  14. # YAML Files
  15. [*.{yml,yaml,log.config.j2,yaml.j2}]
  16. indent_style = space
  17. indent_size = 2
  18. [group_vars/matrix_servers]
  19. indent_style = space
  20. indent_size = 2
  21. [justfile]
  22. indent_style = space
  23. indent_size = 4
  24. # Markdown Files
  25. #
  26. # Two spaces at the end of a line in Markdown mean "new line",
  27. # so trimming trailing whitespace for such files can cause breakage.
  28. [*.md]
  29. trim_trailing_whitespace = false