mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-01-07 12:03:25 +08:00
* run black * create monkeypatching function for adding get_item dunder * whoops i forgot the test * change the name in INSTALLED_APPS to make test pass * turn the whole thing into a proper package * move django_stubs_ext to requirements.txt * also install requirements.txt * attempt to fix pre-commit * numerous small code review fixes * fix dependency issues * small dependency fixes * configure proper license file location * add the rest of the monkeypatching * use strict mypy * update contributing with a note monkeypatching generics * copy release script from parent package
47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
default_language_version:
|
|
python: python3.9
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v3.3.0
|
|
hooks:
|
|
- id: check-yaml
|
|
- id: trailing-whitespace
|
|
- id: check-executables-have-shebangs
|
|
- id: debug-statements
|
|
- id: check-merge-conflict
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v2.7.3
|
|
hooks:
|
|
- id: pyupgrade
|
|
args: ["--py36-plus"]
|
|
- repo: https://github.com/pre-commit/mirrors-isort
|
|
rev: v5.6.4
|
|
hooks:
|
|
- id: isort
|
|
- repo: https://github.com/psf/black
|
|
rev: 20.8b1
|
|
hooks:
|
|
- id: black
|
|
- repo: https://gitlab.com/pycqa/flake8
|
|
rev: 3.8.4
|
|
hooks:
|
|
- id: flake8
|
|
- repo: local
|
|
hooks:
|
|
- id: mypy
|
|
name: mypy
|
|
entry: mypy
|
|
language: system
|
|
types: [ python ]
|
|
exclude: "scripts/|django_stubs_ext/"
|
|
args: [ "--cache-dir=/dev/null", "--no-incremental" ]
|
|
- id: mypy
|
|
name: mypy (django_stubs_ext)
|
|
entry: mypy
|
|
language: system
|
|
types: [ python ]
|
|
files: "django_stubs_ext/|django_stubs_ext/tests/"
|
|
args: [ "--cache-dir=/dev/null", "--no-incremental", "--strict" ]
|