From 0b6117d1d10fe01fa748179cb39de299108662c2 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Thu, 26 May 2022 21:01:38 +0300
Subject: [PATCH] Update pre-commit.

---
 .pre-commit-config.yaml | 47 +++++++++++++++++++++++++++++++++--------
 1 file changed, 38 insertions(+), 9 deletions(-)

diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index a51b4fc..59da334 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -1,11 +1,9 @@
 ---
 repos:
   - repo: https://github.com/pre-commit/pre-commit-hooks.git
-    rev: v4.0.1
+    rev: v4.2.0
     hooks:
-      - id: check-added-large-files
       - id: check-merge-conflict
-      - id: check-shebang-scripts-are-executable
       - id: check-yaml
       - id: detect-private-key
       - id: end-of-file-fixer
@@ -18,7 +16,7 @@ repos:
       - id: codespell
 
   - repo: https://github.com/Yelp/detect-secrets.git
-    rev: v1.1.0
+    rev: v1.2.0
     hooks:
       - id: detect-secrets
 
@@ -30,7 +28,7 @@ repos:
         exclude: LICENSE
 
   - repo: https://gitlab.com/devopshq/gitlab-ci-linter.git
-    rev: v1.0.2
+    rev: v1.0.3
     hooks:
       - id: gitlab-ci-linter
         args:
@@ -48,17 +46,17 @@ repos:
       - id: yamllint
 
   - repo: https://github.com/executablebooks/mdformat.git
-    rev: 0.7.10
+    rev: 0.7.14
     hooks:
       - id: mdformat
 
   - repo: https://github.com/AleksaC/hadolint-py.git
-    rev: v2.8.0
+    rev: v2.10.0
     hooks:
       - id: hadolint
 
   - repo: https://github.com/ambv/black.git
-    rev: 21.10b0
+    rev: 22.3.0
     hooks:
       - id: black
         args:
@@ -72,7 +70,7 @@ repos:
         args: ["--filter-files", "--profile", "black"]
 
   - repo: https://github.com/PyCQA/prospector.git
-    rev: 1.6.0
+    rev: 1.7.7
     hooks:
       - id: prospector
         args:
@@ -107,3 +105,34 @@ repos:
             --doctests
         additional_dependencies:
           - flake8-bugbear
+          - flake8-builtins
+          - flake8-comprehensions
+          - flake8-loopy
+          - flake8-pie
+          - flake8-tuple
+          - flake8-warnings
+
+  - repo: https://github.com/Lucas-C/pre-commit-hooks-safety.git
+    rev: v1.2.4
+    hooks:
+      - id: python-safety-dependencies-check
+
+  - repo: https://github.com/asottile/pyupgrade.git
+    rev: v2.32.0
+    hooks:
+      - id: pyupgrade
+
+  - repo: https://github.com/hadialqattan/pycln.git
+    rev: v1.3.2
+    hooks:
+      - id: pycln
+
+  - repo: https://github.com/pycqa/pydocstyle.git
+    rev: 6.1.1
+    hooks:
+      - id: pydocstyle
+
+  - repo: https://github.com/PyCQA/docformatter.git
+    rev: v1.4
+    hooks:
+      - id: docformatter
-- 
GitLab