2018-05-18 04:55:14 +08:00
|
|
|
repos:
|
2019-08-11 03:38:13 +08:00
|
|
|
- repo: https://github.com/psf/black
|
2022-04-05 04:26:44 +08:00
|
|
|
rev: 22.3.0
|
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
|
2022-02-01 06:18:51 +08:00
|
|
|
rev: v1.12.1
|
2018-06-03 11:29:28 +08:00
|
|
|
hooks:
|
|
|
|
- id: blacken-docs
|
2020-12-30 17:56:09 +08:00
|
|
|
additional_dependencies: [black==20.8b1]
|
2018-05-18 04:55:14 +08:00
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2022-04-12 05:28:05 +08:00
|
|
|
rev: v4.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
|
2022-02-12 01:34:02 +08:00
|
|
|
- repo: https://github.com/myint/autoflake
|
|
|
|
rev: v1.4
|
|
|
|
hooks:
|
|
|
|
- id: autoflake
|
|
|
|
name: autoflake
|
|
|
|
args: ["--in-place", "--remove-unused-variables", "--remove-all-unused-imports"]
|
|
|
|
language: python
|
|
|
|
files: \.py$
|
2021-04-06 01:10:40 +08:00
|
|
|
- repo: https://github.com/PyCQA/flake8
|
2021-10-12 04:09:25 +08:00
|
|
|
rev: 4.0.1
|
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:
|
2022-01-24 10:21:26 +08:00
|
|
|
- flake8-typing-imports==1.12.0
|
2020-07-18 17:28:44 +08:00
|
|
|
- flake8-docstrings==1.5.0
|
2018-10-25 15:01:29 +08:00
|
|
|
- repo: https://github.com/asottile/reorder_python_imports
|
2022-05-03 04:47:02 +08:00
|
|
|
rev: v3.1.0
|
2018-10-25 15:01:29 +08:00
|
|
|
hooks:
|
|
|
|
- id: reorder-python-imports
|
2021-12-26 04:25:42 +08:00
|
|
|
args: ['--application-directories=.:src', --py37-plus]
|
2018-05-18 04:55:14 +08:00
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
2022-05-11 21:52:41 +08:00
|
|
|
rev: v2.32.1
|
2018-05-18 04:55:14 +08:00
|
|
|
hooks:
|
2018-10-09 01:10:46 +08:00
|
|
|
- id: pyupgrade
|
2021-12-26 04:25:42 +08:00
|
|
|
args: [--py37-plus]
|
2020-06-05 00:58:28 +08:00
|
|
|
- repo: https://github.com/asottile/setup-cfg-fmt
|
2022-04-05 04:26:44 +08:00
|
|
|
rev: v1.20.1
|
2020-06-05 00:58:28 +08:00
|
|
|
hooks:
|
|
|
|
- id: setup-cfg-fmt
|
2021-03-27 22:04:26 +08:00
|
|
|
args: [--max-py-version=3.10]
|
2020-10-06 09:13:05 +08:00
|
|
|
- repo: https://github.com/pre-commit/pygrep-hooks
|
2021-06-15 01:42:33 +08:00
|
|
|
rev: v1.9.0
|
2020-10-06 09:13:05 +08:00
|
|
|
hooks:
|
|
|
|
- id: python-use-type-annotations
|
2019-07-08 15:04:19 +08:00
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
2022-05-03 04:47:02 +08:00
|
|
|
rev: v0.950
|
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: []
|
2020-10-17 23:18:24 +08:00
|
|
|
additional_dependencies:
|
|
|
|
- iniconfig>=1.1.0
|
2020-10-29 04:21:13 +08:00
|
|
|
- py>=1.8.2
|
|
|
|
- attrs>=19.2.0
|
|
|
|
- packaging
|
2021-07-06 05:26:01 +08:00
|
|
|
- tomli
|
2021-07-13 19:27:35 +08:00
|
|
|
- types-atomicwrites
|
2021-06-20 12:31:17 +08:00
|
|
|
- types-pkg_resources
|
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]
|
2021-02-22 16:43:52 +08:00
|
|
|
- id: py-path-deprecated
|
|
|
|
name: py.path usage is deprecated
|
2021-03-21 06:39:38 +08:00
|
|
|
exclude: docs|src/_pytest/deprecated.py|testing/deprecated_test.py
|
2021-02-22 16:43:52 +08:00
|
|
|
language: pygrep
|
|
|
|
entry: \bpy\.path\.local
|
|
|
|
types: [python]
|