1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-05-28 05:46:27 +02:00
ultrajson/.pre-commit-config.yaml

41 lines
949 B
YAML
Raw Normal View History

repos:
- repo: https://github.com/asottile/pyupgrade
2021-04-12 18:41:46 +02:00
rev: v2.12.0
hooks:
- id: pyupgrade
2020-09-08 20:12:50 +02:00
args: ["--py36-plus"]
- repo: https://github.com/psf/black
2020-09-08 20:12:50 +02:00
rev: 20.8b1
hooks:
- id: black
2020-09-08 20:12:50 +02:00
args: ["--target-version", "py36"]
- repo: https://github.com/PyCQA/isort
2021-04-12 18:41:46 +02:00
rev: 5.8.0
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
rev: 3.9.0
hooks:
- id: flake8
additional_dependencies: [flake8-2020, flake8-implicit-str-concat]
- repo: https://github.com/pre-commit/pygrep-hooks
2021-03-05 13:57:31 +01:00
rev: v1.8.0
hooks:
- id: python-check-blanket-noqa
- id: rst-backticks
- repo: https://github.com/pre-commit/pre-commit-hooks
2021-03-05 13:57:31 +01:00
rev: v3.4.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"