Initial commit

This commit is contained in:
2026-05-09 16:00:38 +03:00
parent 9c5dd913c1
commit 52320f4147
20 changed files with 4814 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
repos:
- repo: https://github.com/psf/black
rev: 24.10.0
hooks:
- id: black
args: [--line-length=88, --target-version=py38]
- repo: https://github.com/PyCQA/flake8
rev: 7.1.1
hooks:
- id: flake8
args: # arguments to configure flake8
# making isort line length compatible with black
- "--max-line-length=88"
- "--max-complexity=18"
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- id: check-json
- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
args: ["--filter-files" ]