Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 

33 строки
870 B

  1. ---
  2. exclude: "^(LICENSES/|var/)"
  3. # See: https://pre-commit.com/hooks.html
  4. repos:
  5. - repo: https://github.com/pre-commit/pre-commit-hooks
  6. rev: v6.0.0
  7. hooks:
  8. # - id: check-executables-have-shebangs
  9. - id: check-added-large-files
  10. - id: check-case-conflict
  11. - id: check-json
  12. - id: check-toml
  13. - id: trailing-whitespace
  14. - id: end-of-file-fixer
  15. - repo: https://github.com/codespell-project/codespell
  16. rev: v2.4.2
  17. hooks:
  18. - id: codespell
  19. args: ["--skip=*.po,*.pot,i18n/"]
  20. - repo: https://github.com/fsfe/reuse-tool # https://reuse.software/dev/#pre-commit-hook
  21. rev: v6.2.0
  22. hooks:
  23. - id: reuse
  24. - repo: https://github.com/ansible/ansible-lint
  25. rev: v26.3.0
  26. hooks:
  27. - id: ansible-lint
  28. files: '^roles/custom/'
  29. args: ['roles/custom']
  30. pass_filenames: false