Skip to content

Commit

Permalink
Code quality check improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
dividor committed May 8, 2024
1 parent fddbade commit 599e9c0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
repos:
- repo: https://github.com/pre-commit/mirrors-isort
rev: v5.10.1
hooks:
- id: isort
- repo: https://github.com/ambv/black
rev: 24.4.2
hooks:
- id: black
language_version: python3.11
- repo: https://github.com/pycqa/flake8.git
rev: 7.0.0
hooks:
- id: flake8
exclude: 'tests|env|docs'
- repo: https://github.com/econchick/interrogate
rev: 1.7.0
hooks:
- id: interrogate
args: [--fail-under=65, --verbose]

0 comments on commit 599e9c0

Please sign in to comment.