test_ok2/.pre-commit-config.yaml

97 lines
2.8 KiB
YAML
Raw Normal View History

2018-05-18 04:55:14 +08:00
repos:
2019-08-11 03:38:13 +08:00
- repo: https://github.com/psf/black
rev: 20.8b1
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
2021-03-09 00:54:31 +08:00
rev: v1.10.0
2018-06-03 11:29:28 +08:00
hooks:
- id: blacken-docs
additional_dependencies: [black==20.8b1]
2018-05-18 04:55:14 +08:00
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
2018-05-18 04:55:14 +08:00
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: fix-encoding-pragma
args: [--remove]
2018-05-18 04:55:14 +08:00
- id: check-yaml
- id: debug-statements
exclude: _pytest/(debugging|hookspec).py
language_version: python3
2019-01-30 13:11:15 +08:00
- repo: https://gitlab.com/pycqa/flake8
2021-03-16 01:01:35 +08:00
rev: 3.9.0
2019-01-30 13:11:15 +08:00
hooks:
2018-05-18 04:55:14 +08:00
- id: flake8
language_version: python3
additional_dependencies:
- flake8-typing-imports==1.9.0
- flake8-docstrings==1.5.0
- repo: https://github.com/asottile/reorder_python_imports
2021-02-09 00:50:48 +08:00
rev: v2.4.0
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
rev: v2.11.0
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]
- repo: https://github.com/asottile/setup-cfg-fmt
2021-03-16 01:01:35 +08:00
rev: v1.17.0
hooks:
- id: setup-cfg-fmt
args: [--max-py-version=3.10]
2020-10-06 09:13:05 +08:00
- repo: https://github.com/pre-commit/pygrep-hooks
2021-03-02 00:53:28 +08:00
rev: v1.8.0
2020-10-06 09:13:05 +08:00
hooks:
- id: python-use-type-annotations
- repo: https://github.com/pre-commit/mirrors-mypy
2021-02-23 01:04:30 +08:00
rev: v0.812
hooks:
- id: mypy
files: ^(src/|testing/)
args: []
additional_dependencies:
- iniconfig>=1.1.0
- py>=1.8.2
- attrs>=19.2.0
- packaging
- repo: local
hooks:
- id: rst
name: rst
2018-05-26 09:16:54 +08:00
entry: rst-lint --encoding utf-8
files: ^(RELEASING.rst|README.rst|TIDELIFT.rst)$
language: python
additional_dependencies: [pygments, restructuredtext_lint]
2018-08-02 06:21:34 +08:00
- id: changelogs-rst
name: changelog filenames
language: fail
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)
files: ^changelog/
2019-01-21 03:59:48 +08:00
- id: py-deprecated
name: py library is deprecated
language: pygrep
entry: >
(?x)\bpy\.(
_code\.|
builtin\.|
code\.|
io\.|
path\.local\.sysfind|
process\.|
std\.|
error\.|
xml\.
)
2019-01-21 03:59:48 +08:00
types: [python]
- id: py-path-deprecated
name: py.path usage is deprecated
language: pygrep
entry: \bpy\.path\.local
exclude: docs
types: [python]