2019-03-11 12:52:57 +00:00
|
|
|
---
|
2019-11-15 16:50:38 +00:00
|
|
|
default_language_version:
|
|
|
|
# force all unspecified python hooks to run python3
|
|
|
|
python: python3
|
|
|
|
|
2019-03-11 12:52:57 +00:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2021-11-17 17:22:15 +00:00
|
|
|
rev: v4.1.0
|
2019-03-11 12:52:57 +00:00
|
|
|
hooks:
|
2020-12-16 23:21:03 +00:00
|
|
|
- id: check-case-conflict
|
2019-03-11 12:52:57 +00:00
|
|
|
- id: check-executables-have-shebangs
|
|
|
|
- id: check-json
|
|
|
|
- id: check-merge-conflict
|
2020-12-16 23:21:03 +00:00
|
|
|
- id: check-toml
|
2019-03-11 12:52:57 +00:00
|
|
|
- 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
|
2020-11-16 04:02:59 +00:00
|
|
|
|
|
|
|
# Text file hooks
|
2019-03-11 12:52:57 +00:00
|
|
|
- repo: https://github.com/igorshubovych/markdownlint-cli
|
2022-02-24 01:11:49 +00:00
|
|
|
rev: v0.31.1
|
2019-03-11 12:52:57 +00:00
|
|
|
hooks:
|
|
|
|
- id: markdownlint
|
2019-06-24 21:14:02 +00:00
|
|
|
args:
|
2021-06-18 07:51:38 +00:00
|
|
|
- --config=.mdl_config.yaml
|
2020-12-16 23:03:13 +00:00
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
2021-12-15 20:27:39 +00:00
|
|
|
rev: v2.5.1
|
2020-11-16 04:02:59 +00:00
|
|
|
hooks:
|
|
|
|
- id: prettier
|
2019-03-11 12:52:57 +00:00
|
|
|
- repo: https://github.com/adrienverge/yamllint
|
2021-09-29 17:34:39 +00:00
|
|
|
rev: v1.26.3
|
2019-03-11 12:52:57 +00:00
|
|
|
hooks:
|
|
|
|
- id: yamllint
|
2021-01-07 09:07:38 +00:00
|
|
|
args:
|
|
|
|
- --strict
|
2022-02-28 05:32:42 +00:00
|
|
|
|
|
|
|
# Shell script hooks
|
|
|
|
- repo: https://github.com/cisagov/pre-commit-shfmt
|
|
|
|
rev: v0.0.2
|
|
|
|
hooks:
|
|
|
|
- id: shfmt
|
|
|
|
args:
|
|
|
|
# Indent by two spaces
|
|
|
|
- -i
|
|
|
|
- '2'
|
|
|
|
# Binary operators may start a line
|
|
|
|
- -bn
|
|
|
|
# Switch cases are indented
|
|
|
|
- -ci
|
|
|
|
# Redirect operators are followed by a space
|
|
|
|
- -sr
|
|
|
|
- repo: https://github.com/detailyang/pre-commit-shell
|
|
|
|
rev: 1.0.5
|
|
|
|
hooks:
|
|
|
|
- id: shell-lint
|