aboutsummaryrefslogtreecommitdiff
path: root/.pre-commit-config.yaml
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2022-08-10 10:23:45 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2022-08-10 10:23:45 +0200
commit75006064d27a01c423cb8697fe6a153f2210da8b (patch)
tree7690acad62ee1811aeb5674232b12d9f2ddc4278 /.pre-commit-config.yaml
parentUpdated Flask to version 2.2.2. (diff)
downloadnewspipe-75006064d27a01c423cb8697fe6a153f2210da8b.tar.gz
newspipe-75006064d27a01c423cb8697fe6a153f2210da8b.tar.bz2
newspipe-75006064d27a01c423cb8697fe6a153f2210da8b.zip
new: [pre-commit] added pip-audit to .pre-commit-config.yaml file.
Diffstat (limited to '.pre-commit-config.yaml')
-rw-r--r--.pre-commit-config.yaml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index ee595fc7..d50d8fee 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -27,3 +27,7 @@ repos:
- id: fix-byte-order-marker
- id: trailing-whitespace
- id: end-of-file-fixer
+ - repo: https://github.com/trailofbits/pip-audit
+ rev: v2.4.3
+ hooks:
+ - id: pip-audit
bgstack15