2023-06-27 09:50:13 +00:00
|
|
|
---
|
|
|
|
# See https://pre-commit.com for more information
|
|
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
2023-07-11 09:15:08 +00:00
|
|
|
exclude: ^plugins/module_utils/vendor/hcloud/.*$
|
2023-06-27 09:50:13 +00:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2023-10-09 09:48:46 +00:00
|
|
|
rev: v4.5.0
|
2023-06-27 09:50:13 +00:00
|
|
|
hooks:
|
|
|
|
- id: check-added-large-files
|
|
|
|
- id: check-case-conflict
|
|
|
|
- id: check-symlinks
|
|
|
|
- id: destroyed-symlinks
|
|
|
|
|
|
|
|
- id: check-json
|
|
|
|
- id: check-yaml
|
|
|
|
- id: check-toml
|
|
|
|
|
|
|
|
- id: check-merge-conflict
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: mixed-line-ending
|
|
|
|
- id: trailing-whitespace
|
|
|
|
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
2023-11-13 11:29:49 +00:00
|
|
|
rev: v3.1.0
|
2023-06-27 09:50:13 +00:00
|
|
|
hooks:
|
|
|
|
- id: prettier
|
|
|
|
files: \.(md|ya?ml)$
|
2023-11-07 12:00:15 +00:00
|
|
|
exclude: ^changelogs/(dev-changelog\.md|changelog\.yaml)$
|
2023-06-27 09:50:13 +00:00
|
|
|
|
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
2023-10-09 09:49:08 +00:00
|
|
|
rev: v3.15.0
|
2023-06-27 09:50:13 +00:00
|
|
|
hooks:
|
|
|
|
- id: pyupgrade
|
2023-07-19 12:28:21 +00:00
|
|
|
args: [--py38-plus]
|
2023-06-27 09:50:13 +00:00
|
|
|
|
|
|
|
- repo: https://github.com/pycqa/isort
|
|
|
|
rev: 5.12.0
|
|
|
|
hooks:
|
|
|
|
- id: isort
|
|
|
|
|
2023-10-09 11:42:43 +00:00
|
|
|
- repo: https://github.com/psf/black-pre-commit-mirror
|
2023-11-08 08:18:57 +00:00
|
|
|
rev: 23.11.0
|
2023-06-27 09:50:13 +00:00
|
|
|
hooks:
|
|
|
|
- id: black
|
2023-07-04 07:30:37 +00:00
|
|
|
|
2023-07-31 08:13:07 +00:00
|
|
|
- repo: https://github.com/ansible-community/antsibull-changelog
|
2023-08-11 13:38:50 +00:00
|
|
|
rev: 0.23.0
|
2023-08-02 11:31:41 +00:00
|
|
|
hooks:
|
|
|
|
- id: antsibull-changelog-lint
|
|
|
|
- id: antsibull-changelog-lint-changelog-yaml
|
|
|
|
|
2023-08-09 09:32:23 +00:00
|
|
|
- repo: https://github.com/ansible/ansible-lint
|
2023-11-07 11:34:00 +00:00
|
|
|
rev: v6.22.0
|
2023-08-09 09:32:23 +00:00
|
|
|
hooks:
|
|
|
|
- id: ansible-lint
|
|
|
|
name: ansible-lint
|
2023-10-06 14:02:46 +00:00
|
|
|
args: [--offline]
|
2023-10-23 14:23:33 +00:00
|
|
|
additional_dependencies:
|
|
|
|
- ansible-core>=2.13.3
|
|
|
|
- netaddr
|
2023-08-09 09:32:23 +00:00
|
|
|
|
2023-08-02 11:31:41 +00:00
|
|
|
- repo: local
|
2023-08-02 10:04:20 +00:00
|
|
|
hooks:
|
|
|
|
- id: shfmt
|
|
|
|
name: shfmt
|
|
|
|
description: Format shell scripts with shfmt
|
|
|
|
language: golang
|
|
|
|
additional_dependencies: [mvdan.cc/sh/v3/cmd/shfmt@v3.7.0]
|
|
|
|
entry: shfmt -i 2 -ci -sr -kp -w
|
|
|
|
types: [shell]
|
|
|
|
|
|
|
|
- repo: https://github.com/shellcheck-py/shellcheck-py
|
2023-10-09 11:42:43 +00:00
|
|
|
rev: v0.9.0.6
|
2023-08-02 10:04:20 +00:00
|
|
|
hooks:
|
|
|
|
- id: shellcheck
|
|
|
|
|
2023-07-31 08:13:07 +00:00
|
|
|
- repo: local
|
|
|
|
hooks:
|
2023-07-26 14:09:48 +00:00
|
|
|
- id: check-integration-test-files
|
|
|
|
name: check integration test files
|
|
|
|
description: Ensure the integration test files are in sync
|
|
|
|
language: system
|
|
|
|
entry: scripts/integration-test-files.sh
|
|
|
|
pass_filenames: false
|
|
|
|
files: ^(scripts/integration-test-files.sh$|tests/integration)
|