[PATCH v2 4/5] pre-commit: add initial config

Filipe Laíns lains at archlinux.org
Mon Jun 1 22:35:28 UTC 2020


Signed-off-by: Filipe Laíns <lains at archlinux.org>
---
 .pre-commit-config.yaml | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 .pre-commit-config.yaml

diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
new file mode 100644
index 00000000..525c7eb8
--- /dev/null
+++ b/.pre-commit-config.yaml
@@ -0,0 +1,24 @@
+hooks:
+  - &base
+    language: python
+    types: [python]
+    require_serial: true
+    exclude: ^migrations/versions
+  - &flake8
+    id: flake8
+    name: flake8
+    entry: flake8
+    <<: *base
+  - &isort
+    id: isort
+    name: isort
+    entry: isort
+    <<: *base
+
+repos:
+  - repo: local
+    hooks:
+      - <<: *flake8
+      - <<: *isort
+        args: ['--check-only', '--diff']
+
-- 
2.26.2


More information about the aur-dev mailing list