12 lines
377 B
YAML
12 lines
377 B
YAML
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: ansible-lint
|
|
name: Ansible-lint
|
|
description: This hook runs ansible-lint.
|
|
entry: ansible-lint -v --nocolor
|
|
language: python
|
|
# do not pass files to ansible-lint, see:
|
|
# https://github.com/ansible-community/ansible-lint/issues/611
|
|
pass_filenames: false
|
|
always_run: true |