tqdm/.pre-commit-config.yaml

63 lines
1.4 KiB
YAML
Raw Normal View History

2021-01-09 16:20:22 +00:00
default_language_version:
python: python3
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
2021-05-20 10:24:43 +00:00
rev: v4.0.1
2021-01-09 16:20:22 +00:00
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-docstring-first
- id: check-executables-have-shebangs
- id: check-toml
- id: check-merge-conflict
- id: check-yaml
- id: debug-statements
- id: end-of-file-fixer
- id: mixed-line-ending
- id: sort-simple-yaml
- id: trailing-whitespace
exclude: ^README.rst$
- repo: local
hooks:
2021-01-09 17:07:27 +00:00
- id: todo
name: Check TODO
language: pygrep
entry: WIP
args: [-i]
2021-01-09 17:07:27 +00:00
types: [text]
exclude: ^(.pre-commit-config.yaml|.github/workflows/test.yml)$
2021-01-09 16:20:22 +00:00
- id: pytest
name: pytest quick
language: python
2021-01-09 16:20:22 +00:00
entry: pytest
2021-05-20 10:24:43 +00:00
args: [-qq, --durations=1, -k=not slow]
2021-01-09 16:20:22 +00:00
types: [python]
pass_filenames: false
2021-01-09 16:20:22 +00:00
additional_dependencies:
- numpy
- pandas
- pytest-timeout
- pytest-asyncio
- repo: https://gitlab.com/pycqa/flake8
2021-05-20 10:24:43 +00:00
rev: 3.9.2
2021-01-09 16:20:22 +00:00
hooks:
- id: flake8
2021-05-20 10:24:43 +00:00
args: [-j8]
additional_dependencies:
2021-09-18 16:24:50 +00:00
- flake8-broken-line
- flake8-bugbear
- flake8-comprehensions
- flake8-debugger
2021-09-18 16:24:50 +00:00
- flake8-isort
- flake8-string-format
2021-09-18 16:24:50 +00:00
- flake8-type-annotations
2021-01-09 17:00:01 +00:00
- repo: https://github.com/PyCQA/isort
2021-09-08 23:33:11 +00:00
rev: 5.9.3
2021-01-09 17:00:01 +00:00
hooks:
- id: isort
2021-03-08 23:54:13 +00:00
- repo: https://github.com/kynan/nbstripout
2021-09-08 23:33:11 +00:00
rev: 0.5.0
2021-03-08 23:54:13 +00:00
hooks:
- id: nbstripout
2021-05-20 10:24:43 +00:00
args: [--keep-count, --keep-output]