Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

40 行
783 B

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