summaryrefslogtreecommitdiffstats
path: root/.pre-commit-hooks.yaml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:06:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:06:49 +0000
commit2fe34b6444502079dc0b84365ce82dbc92de308e (patch)
tree8fedcab52bbbc3db6c5aa909a88a7a7b81685018 /.pre-commit-hooks.yaml
parentInitial commit. (diff)
downloadansible-lint-2fe34b6444502079dc0b84365ce82dbc92de308e.tar.xz
ansible-lint-2fe34b6444502079dc0b84365ce82dbc92de308e.zip
Adding upstream version 6.17.2.upstream/6.17.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.pre-commit-hooks.yaml')
-rw-r--r--.pre-commit-hooks.yaml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml
new file mode 100644
index 0000000..7c576a6
--- /dev/null
+++ b/.pre-commit-hooks.yaml
@@ -0,0 +1,19 @@
+---
+# 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: python3 -m ansiblelint -v --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
+ additional_dependencies:
+ # https://github.com/pre-commit/pre-commit/issues/1526
+ # If you want to use specific version of ansible-core or ansible, feel
+ # free to override `additional_dependencies` in your own hook config
+ # file.
+ - ansible-core>=2.13.3