1
0
Fork 0
operator-repo/.pre-commit-config.yaml

20 lines
465 B
YAML
Raw Normal View History

2023-08-08 17:55:42 +00:00
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-yaml
2023-08-09 07:40:36 +00:00
- id: check-toml
2023-08-08 17:55:42 +00:00
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 23.7.0
hooks:
- id: black
2023-08-19 09:13:58 +00:00
- repo: https://github.com/PyCQA/bandit
rev: '1.7.5'
hooks:
- id: bandit
args: ["-c", "pyproject.toml"]
additional_dependencies: ["bandit[toml]"]