mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 23.12.1 → 24.1.1](https://github.com/psf/black/compare/23.12.1...24.1.1) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
29 lines
684 B
YAML
29 lines
684 B
YAML
---
|
|
repos:
|
|
- repo: https://github.com/psf/black
|
|
rev: 24.1.1
|
|
hooks:
|
|
- id: black
|
|
language_version: python3.8
|
|
args:
|
|
- "--target-version"
|
|
- "py38"
|
|
- repo: https://github.com/PyCQA/flake8
|
|
rev: "7.0.0"
|
|
hooks:
|
|
- id: flake8
|
|
args: ["--max-line-length", "110"]
|
|
- repo: https://github.com/PyCQA/isort
|
|
rev: 5.13.2
|
|
hooks:
|
|
- id: isort
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v3.15.0
|
|
hooks:
|
|
- id: pyupgrade
|
|
args: [--py38-plus]
|
|
- repo: https://github.com/adamchainz/django-upgrade
|
|
rev: 1.15.0
|
|
hooks:
|
|
- id: django-upgrade
|
|
args: [--target-version, "3.2"]
|