0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-02-28 18:44:03 +00:00
renovatebot_renovate/lib/modules/manager/pre-commit/__fixtures__/complex.pre-commit-config.yaml
Stefan Kraus b2bdd17225
feat(manager/pre-commit): parse 'ssh://git@' in pre-commit repo (#33850)
Signed-off-by: Stefan Kraus <dev@stefankraus.org>
2025-01-26 21:39:37 +00:00

66 lines
1.7 KiB
YAML

fail_fast: true
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.3.0
# multiple hooks:
hooks:
- id: check-ast
- id: check-yaml
- id: end-of-file-fixer
exclude: ^notebooks
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 19.3b0
hooks:
- id: black
language: python
additional_dependencies:
- "request==1.1.1"
- "" # broken pypi package
- repo: https://gitlab.com/psf/black
# should also detect gitlab
rev: 19.3b0
hooks:
- id: black
# missing language, not extracted
additional_dependencies:
- "urllib==24.9.0"
- repo: http://gitlab.com/psf/black
# should also detect http
rev: 19.3b0
hooks:
- id: black
- repo: https://gitlab.mycompany.com/my/dep
# should also detect custom gitlab registry
rev: v42.0
hooks:
- id: custom-hook
- repo: https://gitlab.mycompany.com/my/dep
# should also detect http for custom gitlab registry
rev: v42.0
hooks:
- id: custom-hook
- repo: https://github.com/prettier/pre-commit
# should accept different order of keys
hooks:
- id: prettier
exclude: ^notebooks
rev: v2.1.2
- repo: git@github.com:prettier/pre-commit
# should allow ssh urls
hooks:
- id: prettier
exclude: ^notebooks
rev: v2.1.2
- repo: ssh://git@github.com/pre-commit/pre-commit-hooks
# should allow explicit ssh protocol
hooks:
- id: check-merge-conflict
rev: v5.0.0
- repo: some_invalid_url
# case with invlalid url.
rev: v1.0.0
# pre-commit meta hooks
- repo: meta
hooks: []