mirror of
https://github.com/cisagov/log4j-affected-db.git
synced 2024-10-31 22:28:26 +00:00
6ec697e5f1
This was done using `pre-commit autoupdate`.
49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
---
|
|
default_language_version:
|
|
# force all unspecified python hooks to run python3
|
|
python: python3
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.0.1
|
|
hooks:
|
|
- id: check-case-conflict
|
|
- id: check-executables-have-shebangs
|
|
- id: check-json
|
|
- id: check-merge-conflict
|
|
- id: check-toml
|
|
- id: check-xml
|
|
- id: debug-statements
|
|
- id: detect-aws-credentials
|
|
args:
|
|
- --allow-missing-credentials
|
|
- id: detect-private-key
|
|
- id: end-of-file-fixer
|
|
exclude: files/(issue|motd)
|
|
- id: mixed-line-ending
|
|
args:
|
|
- --fix=lf
|
|
- id: pretty-format-json
|
|
args:
|
|
- --autofix
|
|
- id: requirements-txt-fixer
|
|
- id: trailing-whitespace
|
|
|
|
# Text file hooks
|
|
- repo: https://github.com/igorshubovych/markdownlint-cli
|
|
rev: v0.30.0
|
|
hooks:
|
|
- id: markdownlint
|
|
args:
|
|
- --config=.mdl_config.yaml
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
rev: v2.5.1
|
|
hooks:
|
|
- id: prettier
|
|
- repo: https://github.com/adrienverge/yamllint
|
|
rev: v1.26.3
|
|
hooks:
|
|
- id: yamllint
|
|
args:
|
|
- --strict
|