attrs/.pre-commit-config.yaml

40 lines
935 B
YAML
Raw Normal View History

2020-06-10 06:38:52 +00:00
---
2018-06-10 17:40:07 +00:00
repos:
2019-08-21 15:12:52 +00:00
- repo: https://github.com/psf/black
2021-11-20 15:20:42 +00:00
rev: 21.11b1
2018-06-10 17:40:07 +00:00
hooks:
- id: black
exclude: tests/test_pattern_matching.py
language_version: python3.8
2019-01-31 07:19:26 +00:00
2020-12-07 06:37:37 +00:00
- repo: https://github.com/PyCQA/isort
2021-11-20 15:20:42 +00:00
rev: 5.10.1
hooks:
- id: isort
additional_dependencies: [toml]
2021-05-20 15:11:39 +00:00
files: \.py$
language_version: python3.10
- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
2020-06-10 06:38:52 +00:00
hooks:
- id: flake8
language_version: python3.10
2020-06-10 06:38:52 +00:00
2020-08-25 10:37:54 +00:00
- repo: https://github.com/econchick/interrogate
2021-10-02 12:25:49 +00:00
rev: 1.5.0
2020-08-25 10:37:54 +00:00
hooks:
- id: interrogate
exclude: tests/test_pattern_matching.py
2020-08-25 10:37:54 +00:00
args: [tests]
language_version: python3.10
2020-08-25 10:37:54 +00:00
- repo: https://github.com/pre-commit/pre-commit-hooks
2021-05-20 15:11:39 +00:00
rev: v4.0.1
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: debug-statements
language_version: python3.10
2020-09-02 07:03:06 +00:00
- id: check-toml