summaryrefslogtreecommitdiffstats
path: root/.pre-commit-hooks.yaml
blob: d917473de6011b6275240fadda555917627727cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---

# For use with pre-commit.
# See usage instructions at http://pre-commit.com

-   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