mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
ansible-lint version series 24.y is not working with ansible-core 2.19 and requires versions in series 25.y. Also, other tools were update to more recent versions. Signed-off-by: Rafael Guterres Jeffman <rjeffman@redhat.com>
57 lines
1.3 KiB
YAML
57 lines
1.3 KiB
YAML
---
|
|
repos:
|
|
- repo: https://github.com/ansible/ansible-lint.git
|
|
rev: v25.9.2
|
|
hooks:
|
|
- id: ansible-lint
|
|
always_run: false
|
|
pass_filenames: true
|
|
files: \.(yaml|yml)$
|
|
exclude: /env[^/]*.(yaml|yml)$
|
|
entry: |-
|
|
env
|
|
ANSIBLE_LIBRARY=./plugins/modules
|
|
ANSIBLE_MODULE_UTILS=./plugins/module_utils
|
|
ANSIBLE_DOC_FRAGMENT_PLUGINS=./plugins/doc_fragments
|
|
ansible-lint
|
|
--offline
|
|
--profile production
|
|
--exclude tests/integration/
|
|
--exclude tests/unit/
|
|
--parseable
|
|
--nocolor
|
|
- repo: https://github.com/adrienverge/yamllint.git
|
|
rev: v1.37.1
|
|
hooks:
|
|
- id: yamllint
|
|
files: \.(yaml|yml)$
|
|
- repo: https://github.com/pycqa/flake8
|
|
rev: 7.3.0
|
|
hooks:
|
|
- id: flake8
|
|
- repo: https://github.com/pycqa/pylint
|
|
rev: v4.0.2
|
|
hooks:
|
|
- id: pylint
|
|
args:
|
|
- --disable=import-error
|
|
files: \.py$
|
|
- repo: local
|
|
hooks:
|
|
- id: ansible-doc-test
|
|
name: Verify Ansible roles and module documentation.
|
|
language: python
|
|
entry: utils/ansible-doc-test
|
|
# args: ['-v', 'roles', 'plugins']
|
|
files: ^.*.py$
|
|
- repo: local
|
|
hooks:
|
|
- id: shellcheck
|
|
name: ShellCheck
|
|
language: system
|
|
entry: shellcheck
|
|
args: ['-x']
|
|
files: >
|
|
\.sh$
|
|
utils/sh*$
|