--- repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.0.1 hooks: - id: check-merge-conflict - id: check-toml - id: check-yaml exclude: .drone.yml # drone's yaml is somewhat strange sometimes - repo: local hooks: - id: check-compose-file name: check compose file language: system entry: docker-compose -f docker-compose.yml config pass_filenames: false - id: yamllint name: yamllint language: system entry: yamllint . pass_filenames: false ...