pre-commit-hooks/.pre-commit-config.yaml

48 lines
1.3 KiB
YAML
Raw Normal View History

repos:
2015-12-26 01:37:18 +08:00
- repo: https://github.com/pre-commit/pre-commit-hooks
2021-12-24 12:47:17 +08:00
rev: v4.1.0
2014-03-15 05:23:08 +08:00
hooks:
2014-03-24 14:10:35 +08:00
- id: trailing-whitespace
- id: end-of-file-fixer
2015-01-05 08:05:20 +08:00
- id: check-docstring-first
2014-08-20 07:05:41 +08:00
- id: check-json
- id: check-added-large-files
- id: check-yaml
- id: debug-statements
- id: name-tests-test
2019-02-12 11:57:37 +08:00
- id: double-quote-string-fixer
2015-01-05 08:05:20 +08:00
- id: requirements-txt-fixer
2021-04-06 01:08:26 +08:00
- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
2019-01-30 16:15:11 +08:00
hooks:
2014-04-14 08:58:19 +08:00
- id: flake8
additional_dependencies: [flake8-typing-imports==1.12.0]
- repo: https://github.com/pre-commit/mirrors-autopep8
rev: v1.6.0
hooks:
- id: autopep8
2015-12-26 01:37:18 +08:00
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.0.1
2015-01-05 08:05:20 +08:00
hooks:
- id: reorder-python-imports
args: [--py37-plus, --add-import, 'from __future__ import annotations']
2017-03-13 09:01:29 +08:00
- repo: https://github.com/asottile/pyupgrade
rev: v2.31.1
2017-03-13 09:01:29 +08:00
hooks:
- id: pyupgrade
args: [--py37-plus]
2017-07-13 09:35:24 +08:00
- repo: https://github.com/asottile/add-trailing-comma
rev: v2.2.1
2017-07-13 09:35:24 +08:00
hooks:
- id: add-trailing-comma
2020-02-06 03:10:42 +08:00
args: [--py36-plus]
- repo: https://github.com/asottile/setup-cfg-fmt
rev: v1.20.0
2020-02-06 03:10:42 +08:00
hooks:
- id: setup-cfg-fmt
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.941
hooks:
- id: mypy
2021-06-15 02:30:37 +08:00
additional_dependencies: [types-all]