Skip to content

Commit

Permalink
chore: update pre-commit config flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
niek-mereu committed Jul 23, 2024
1 parent 2a167dd commit 56c6ee9
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.3.0 # Update if there's a newer version
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -14,18 +11,18 @@ repos:
- id: debug-statements

- repo: https://github.com/psf/black
rev: 22.6.0
rev: 22.6.0 # Check for newer version
hooks:
- id: black

- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.12.0 # Check for newer version
hooks:
- id: isort

- repo: https://github.com/pycqa/flake8
rev: 4.0.1
rev: 4.0.1 # Update to the latest version, e.g., 5.0.4
hooks:
- id: flake8
additional_dependencies:
- wemake-python-styleguide==0.16.1
- wemake-python-styleguide==0.16.1 # Update to the latest compatible version or remove temporarily

0 comments on commit 56c6ee9

Please sign in to comment.