Files
chguard/.pre-commit-config.yaml
T
mdaleo404 c1140c1b9c
Lint & Security / precommit-and-security (pull_request) Successful in 1m3s
Fix pre-commit bandit scan path
2026-06-23 16:04:40 +01:00

22 lines
499 B
YAML

repos:
- repo: https://github.com/PyCQA/bandit
rev: 1.9.4
hooks:
- id: bandit
files: ^chguard/
args: ["-lll", "-iii", "-s", "B110,B112"]
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.3.1
hooks:
- id: black
language_version: python3
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-toml