test_ok2/.pre-commit-config.yaml

73 lines
2.2 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: 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
rev: v1.6.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
rev: v2.5.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
2018-05-18 16:48:44 +08:00
exclude: _pytest/debugging.py
language_version: python3
2019-01-30 13:11:15 +08:00
- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.1
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]
- repo: https://github.com/asottile/reorder_python_imports
2019-04-12 19:52:47 +08:00
rev: v1.4.0
hooks:
- id: reorder-python-imports
args: ['--application-directories=.:src', --py3-plus]
2018-05-18 04:55:14 +08:00
- repo: https://github.com/asottile/pyupgrade
rev: v2.2.1
2018-05-18 04:55:14 +08:00
hooks:
2018-10-09 01:10:46 +08:00
- id: pyupgrade
args: [--py3-plus]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.770 # NOTE: keep this in sync with setup.py.
hooks:
- id: mypy
files: ^(src/|testing/)
args: []
- 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\.(BytesIO|saferepr|TerminalWriter)|
path\.local\.sysfind|
process\.|
std\.
)
2019-01-21 03:59:48 +08:00
types: [python]