1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-05-30 03:26:17 +02:00
ultrajson/.pre-commit-config.yaml

49 lines
1.1 KiB
YAML
Raw Normal View History

repos:
- repo: https://github.com/asottile/pyupgrade
rev: v2.31.1
hooks:
- id: pyupgrade
2021-11-22 12:51:22 +01:00
args: [--py37-plus]
- repo: https://github.com/psf/black
2022-04-03 23:53:18 +02:00
rev: 22.3.0
hooks:
- id: black
2021-11-22 12:51:22 +01:00
args: [--target-version=py37]
2020-09-08 20:12:50 +02:00
- repo: https://github.com/PyCQA/isort
2021-11-22 12:51:22 +01:00
rev: 5.10.1
2020-09-08 20:12:50 +02:00
hooks:
- id: isort
2021-04-12 18:41:46 +02:00
- repo: https://github.com/PyCQA/flake8
2021-11-22 12:51:22 +01:00
rev: 4.0.1
hooks:
- id: flake8
additional_dependencies: [flake8-2020, flake8-implicit-str-concat]
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.9.0
hooks:
- id: python-check-blanket-noqa
- id: rst-backticks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
hooks:
2020-05-12 08:38:10 +02:00
- id: check-json
2021-03-05 13:57:31 +01:00
- id: check-merge-conflict
- id: check-toml
- id: check-yaml
2020-05-12 08:36:47 +02:00
- id: end-of-file-fixer
2020-05-12 08:21:45 +02:00
- id: trailing-whitespace
exclude: "^.github/.*_TEMPLATE.md"
2021-05-11 17:53:59 +02:00
2021-09-20 11:18:17 +02:00
- repo: https://github.com/asottile/setup-cfg-fmt
rev: v1.20.1
2021-09-20 11:18:17 +02:00
hooks:
- id: setup-cfg-fmt
2021-05-11 17:53:59 +02:00
ci:
2021-09-04 17:05:49 +02:00
autoupdate_schedule: quarterly