Skip to content

Commit

Permalink
Update all linters to the latest versions
Browse files Browse the repository at this point in the history
Resolves a false positive `missing whitespace after ':'` error
reported by `flake8` for colons in strings.
  • Loading branch information
psss committed Jan 2, 2024
1 parent b871424 commit 98dfd9a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/mirrors-autopep8
rev: 'v2.0.1'
rev: 'v2.0.4'
hooks:
- id: autopep8
args:
Expand All @@ -14,12 +14,12 @@ repos:
- --max-line-length=88

- repo: https://github.com/PyCQA/isort
rev: "5.12.0"
rev: "5.13.2"
hooks:
- id: isort

- repo: https://github.com/pycqa/flake8
rev: "6.0.0"
rev: "6.1.0"
hooks:
- id: flake8
args:
Expand All @@ -40,7 +40,7 @@ repos:
)$
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v4.4.0"
rev: "v4.5.0"
hooks:
- id: end-of-file-fixer
- id: mixed-line-ending
Expand Down

0 comments on commit 98dfd9a

Please sign in to comment.