File: .pre-commit-hooks.yaml

package info (click to toggle)
ansible-lint 4.3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,852 kB
  • sloc: python: 5,378; sh: 11; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 382 bytes parent folder | download
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