mirror of
https://github.com/rocky-linux/ansible-role-kojihub.git
synced 2024-10-31 18:51:22 +00:00
34 lines
872 B
YAML
34 lines
872 B
YAML
|
---
|
||
|
repos:
|
||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||
|
rev: v3.3.0
|
||
|
hooks:
|
||
|
- id: trailing-whitespace
|
||
|
- id: end-of-file-fixer
|
||
|
- id: check-added-large-files
|
||
|
- id: check-case-conflict
|
||
|
- id: check-executables-have-shebangs
|
||
|
- id: check-json
|
||
|
- id: pretty-format-json
|
||
|
|
||
|
|
||
|
- repo: local
|
||
|
hooks:
|
||
|
- id: ansible-lint
|
||
|
name: Ansible-lint
|
||
|
description: This hook runs ansible-lint.
|
||
|
entry: ansible-lint --force-color
|
||
|
language: python
|
||
|
# do not pass files to ansible-lint, see:
|
||
|
# https://github.com/ansible/ansible-lint/issues/611
|
||
|
pass_filenames: false
|
||
|
always_run: true
|
||
|
|
||
|
- repo: https://github.com/adrienverge/yamllint.git
|
||
|
rev: v1.24.2
|
||
|
hooks:
|
||
|
- id: yamllint
|
||
|
files: \.(yaml|yml)$
|
||
|
types: [file, yaml]
|
||
|
entry: yamllint
|