2018-05-18 04:55:14 +08:00
|
|
|
repos:
|
2019-08-11 03:38:13 +08:00
|
|
|
- repo: https://github.com/psf/black
|
2019-11-17 01:42:17 +08:00
|
|
|
rev: 19.10b0
|
2018-05-18 04:55:14 +08:00
|
|
|
hooks:
|
2018-06-03 11:29:28 +08:00
|
|
|
- id: black
|
|
|
|
args: [--safe, --quiet]
|
|
|
|
- repo: https://github.com/asottile/blacken-docs
|
2020-10-03 04:16:22 +08:00
|
|
|
rev: v1.8.0
|
2018-06-03 11:29:28 +08:00
|
|
|
hooks:
|
|
|
|
- id: blacken-docs
|
2020-01-07 19:07:05 +08:00
|
|
|
additional_dependencies: [black==19.10b0]
|
2018-05-18 04:55:14 +08:00
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2020-10-03 04:16:22 +08:00
|
|
|
rev: v3.2.0
|
2018-05-18 04:55:14 +08:00
|
|
|
hooks:
|
|
|
|
- id: trailing-whitespace
|
|
|
|
- id: end-of-file-fixer
|
2019-05-15 06:56:31 +08:00
|
|
|
- id: fix-encoding-pragma
|
2019-06-03 06:29:39 +08:00
|
|
|
args: [--remove]
|
2018-05-18 04:55:14 +08:00
|
|
|
- id: check-yaml
|
|
|
|
- id: debug-statements
|
2020-05-01 19:40:16 +08:00
|
|
|
exclude: _pytest/(debugging|hookspec).py
|
2018-09-16 04:30:44 +08:00
|
|
|
language_version: python3
|
2019-01-30 13:11:15 +08:00
|
|
|
- repo: https://gitlab.com/pycqa/flake8
|
2020-10-03 04:16:22 +08:00
|
|
|
rev: 3.8.3
|
2019-01-30 13:11:15 +08:00
|
|
|
hooks:
|
2018-05-18 04:55:14 +08:00
|
|
|
- id: flake8
|
2018-09-16 04:30:44 +08:00
|
|
|
language_version: python3
|
2020-07-18 17:28:44 +08:00
|
|
|
additional_dependencies:
|
|
|
|
- flake8-typing-imports==1.9.0
|
|
|
|
- flake8-docstrings==1.5.0
|
2018-10-25 15:01:29 +08:00
|
|
|
- repo: https://github.com/asottile/reorder_python_imports
|
2020-10-03 04:16:22 +08:00
|
|
|
rev: v2.3.5
|
2018-10-25 15:01:29 +08:00
|
|
|
hooks:
|
|
|
|
- id: reorder-python-imports
|
2020-10-03 04:16:22 +08:00
|
|
|
args: ['--application-directories=.:src', --py36-plus]
|
2018-05-18 04:55:14 +08:00
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
2020-10-03 04:16:22 +08:00
|
|
|
rev: v2.7.2
|
2018-05-18 04:55:14 +08:00
|
|
|
hooks:
|
2018-10-09 01:10:46 +08:00
|
|
|
- id: pyupgrade
|
2020-10-03 04:16:22 +08:00
|
|
|
args: [--py36-plus]
|
2020-06-05 00:58:28 +08:00
|
|
|
- repo: https://github.com/asottile/setup-cfg-fmt
|
2020-10-03 04:16:22 +08:00
|
|
|
rev: v1.11.0
|
2020-06-05 00:58:28 +08:00
|
|
|
hooks:
|
|
|
|
- id: setup-cfg-fmt
|
|
|
|
# TODO: when upgrading setup-cfg-fmt this can be removed
|
|
|
|
args: [--max-py-version=3.9]
|
2019-07-08 15:04:19 +08:00
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
2020-10-03 04:16:22 +08:00
|
|
|
rev: v0.782 # NOTE: keep this in sync with setup.cfg.
|
2019-07-08 15:04:19 +08:00
|
|
|
hooks:
|
|
|
|
- id: mypy
|
2019-07-14 23:07:04 +08:00
|
|
|
files: ^(src/|testing/)
|
2019-07-08 15:04:19 +08:00
|
|
|
args: []
|
2018-05-24 20:17:09 +08:00
|
|
|
- repo: local
|
|
|
|
hooks:
|
|
|
|
- id: rst
|
|
|
|
name: rst
|
2018-05-26 09:16:54 +08:00
|
|
|
entry: rst-lint --encoding utf-8
|
2020-01-25 22:31:21 +08:00
|
|
|
files: ^(RELEASING.rst|README.rst|TIDELIFT.rst)$
|
2018-05-24 20:17:09 +08:00
|
|
|
language: python
|
|
|
|
additional_dependencies: [pygments, restructuredtext_lint]
|
2018-08-02 06:21:34 +08:00
|
|
|
- id: changelogs-rst
|
2018-09-08 00:32:36 +08:00
|
|
|
name: changelog filenames
|
|
|
|
language: fail
|
2019-12-06 19:47:39 +08:00
|
|
|
entry: 'changelog files must be named ####.(breaking|bugfix|deprecation|doc|feature|improvement|trivial|vendor).rst'
|
|
|
|
exclude: changelog/(\d+\.(breaking|bugfix|deprecation|doc|feature|improvement|trivial|vendor).rst|README.rst|_template.rst)
|
2018-09-08 00:32:36 +08:00
|
|
|
files: ^changelog/
|
2019-01-21 03:59:48 +08:00
|
|
|
- id: py-deprecated
|
|
|
|
name: py library is deprecated
|
|
|
|
language: pygrep
|
2019-01-22 11:46:57 +08:00
|
|
|
entry: >
|
|
|
|
(?x)\bpy\.(
|
|
|
|
_code\.|
|
|
|
|
builtin\.|
|
|
|
|
code\.|
|
2020-07-24 15:20:37 +08:00
|
|
|
io\.|
|
2019-01-22 11:46:57 +08:00
|
|
|
path\.local\.sysfind|
|
|
|
|
process\.|
|
2020-07-24 15:20:37 +08:00
|
|
|
std\.|
|
|
|
|
error\.|
|
|
|
|
xml\.
|
2019-01-22 11:46:57 +08:00
|
|
|
)
|
2019-01-21 03:59:48 +08:00
|
|
|
types: [python]
|