Skip to content

Commit

Permalink
chore: 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 a474f8f commit ed97e52
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,28 +1,37 @@
repos:
- repo: https://github.com/ambv/black
rev: 22.12.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: "v0.991"
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:
- id: nb-clean
args:
- --preserve-cell-outputs
default_language_version:
python: python3

0 comments on commit ed97e52

Please sign in to comment.