Skip to content

Commit

Permalink
Update .pre-commit-config.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
benwandrew authored Sep 13, 2023
1 parent 1136529 commit e0a9c80
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,29 +1,32 @@
repos:
- repo: https://github.com/ambv/black
rev: 23.3.0
rev: 23.7.0
hooks:
- id: black
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
args:
- "--profile=black"
- "--filter-files"
- "--project=autora"
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
rev: 6.1.0
hooks:
- id: flake8
args:
- "--max-line-length=100"
- "--extend-ignore=E203"
- "--per-file-ignores=__init__.py:F401"
- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.3.0"
rev: "v1.5.1"
hooks:
- id: mypy
additional_dependencies: [types-requests]
additional_dependencies: [types-requests,scipy,pytest]
language_version: python3.8
args:
- "--namespace-packages"
- "--explicit-package-bases"
- repo: https://github.com/srstevenson/nb-clean
rev: 2.4.0
hooks:
Expand Down

0 comments on commit e0a9c80

Please sign in to comment.