Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v6.0.0
hooks:
- id: end-of-file-fixer
- id: mixed-line-ending
Expand All @@ -15,7 +15,7 @@ repos:
- id: check-added-large-files
args: ['--maxkb=1024']
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.8.0
rev: v1.20.1
hooks:
- id: mypy
args:
Expand All @@ -24,17 +24,17 @@ repos:
- "django-stubs==1.13.1"
- "types-setuptools==65.7.0.2"
- "types-requests==2.28.11.8"
- repo: https://github.com/psf/black
rev: 24.10.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.3.1
hooks:
- id: black

- repo: https://github.com/pycqa/isort
rev: 5.13.2
rev: 8.0.1
hooks:
- id: isort

- repo: https://github.com/pycqa/flake8
rev: 6.1.0
rev: 7.3.0
hooks:
- id: flake8
1 change: 1 addition & 0 deletions example_projects/jsonplaceholder_project/manage.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""

import os
import sys

Expand Down