Skip to content

Commit

Permalink
fix: update pre-commit config to match EveryVoice
Browse files Browse the repository at this point in the history
  • Loading branch information
joanise committed Oct 9, 2024
1 parent 7f396ed commit 817ace4
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,35 +1,39 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
exclude: \.svg$
- repo: local
- repo: local
# Using local repos because these won't work for me from remote repo -EJ
# They're also more convenient because we install them via requirements.dev.txt
# and they are then available on the command line as well as in pre-commit.
hooks:
- id: isort
- id: isort
name: isort
entry: isort
language: system
types: [python]
stages: [commit]
- id: black
- id: black
name: black
entry: black
language: system
types: [python]
stages: [commit]
- id: mypy
# We do flake8 last since black fixes a lot of the stuff it complains about
- repo: https://github.com/pycqa/flake8
rev: 7.1.0
hooks:
- id: flake8
# We do mypy last because it's the slowest of them all
- repo: local
hooks:
- id: mypy
name: mypy
entry: mypy
language: system
types: [python]
stages: [commit]
- repo: https://github.com/PyCQA/flake8
rev: 3.8.3
hooks:
- id: flake8

0 comments on commit 817ace4

Please sign in to comment.