mirror of
https://github.com/ultrajson/ultrajson.git
synced 2024-11-23 12:32:02 +01:00
49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
repos:
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v3.15.2
|
|
hooks:
|
|
- id: pyupgrade
|
|
args: [--py38-plus]
|
|
|
|
- repo: https://github.com/psf/black-pre-commit-mirror
|
|
rev: 24.3.0
|
|
hooks:
|
|
- id: black
|
|
args: [--target-version=py38]
|
|
|
|
- repo: https://github.com/PyCQA/isort
|
|
rev: 5.13.2
|
|
hooks:
|
|
- id: isort
|
|
|
|
- repo: https://github.com/PyCQA/flake8
|
|
rev: 7.0.0
|
|
hooks:
|
|
- id: flake8
|
|
additional_dependencies: [flake8-2020, flake8-implicit-str-concat]
|
|
|
|
- repo: https://github.com/pre-commit/pygrep-hooks
|
|
rev: v1.10.0
|
|
hooks:
|
|
- id: python-check-blanket-noqa
|
|
- id: rst-backticks
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.5.0
|
|
hooks:
|
|
- id: check-json
|
|
- id: check-merge-conflict
|
|
- id: check-toml
|
|
- id: check-yaml
|
|
- id: end-of-file-fixer
|
|
- id: trailing-whitespace
|
|
exclude: "^.github/.*_TEMPLATE.md"
|
|
|
|
- repo: https://github.com/asottile/setup-cfg-fmt
|
|
rev: v2.5.0
|
|
hooks:
|
|
- id: setup-cfg-fmt
|
|
args: [--include-version-classifiers, --max-py-version=3.13]
|
|
ci:
|
|
autoupdate_schedule: quarterly
|