Skip to content

Commit

Permalink
lint: update pre-commit config
Browse files Browse the repository at this point in the history
  • Loading branch information
casperdcl committed May 20, 2021
1 parent 29c8810 commit 93b175b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Expand Up @@ -2,7 +2,7 @@ default_language_version:
python: python3
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
rev: v4.0.1
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand Down Expand Up @@ -30,7 +30,7 @@ repos:
name: pytest quick
language: python
entry: pytest
args: ['-qq', '--durations=1', '-k=not slow']
args: [-qq, --durations=1, -k=not slow]
types: [python]
pass_filenames: false
additional_dependencies:
Expand All @@ -39,21 +39,21 @@ repos:
- pytest-timeout
- pytest-asyncio
- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.4
rev: 3.9.2
hooks:
- id: flake8
args: ['-j8']
args: [-j8]
additional_dependencies:
- flake8-bugbear
- flake8-comprehensions
- flake8-debugger
- flake8-string-format
- repo: https://github.com/PyCQA/isort
rev: 5.7.0
rev: 5.8.0
hooks:
- id: isort
- repo: https://github.com/kynan/nbstripout
rev: 0.3.9
rev: 0.4.0
hooks:
- id: nbstripout
args: ['--keep-count', '--keep-output']
args: [--keep-count, --keep-output]

0 comments on commit 93b175b

Please sign in to comment.