mirror of
https://github.com/inventree/InvenTree.git
synced 2025-11-13 11:26:42 +00:00
* feat(backend): bump to 5.2 lts / python 3.11 This will give us support till 2027-10 (PEP 664) * bump dependencies * fix dflt version * remove 3.9 precaution * changes for 5.2 * changes for py 3.10 * debug command * lower crypto again * another lowering * fix version string * lower minimum version to 3.11 * update refs * fix text * reaking: remove now unsupported OS * disable break * remove temp changes * fix ruff call * fix remaining ruff warnings * remove old arg * lower allauth reqs * replace old method * fix issue with args passing beeing depreceated * add changelog entries * bump dependencies a bit further * fix broken image init for now might need a refactor * fix another test * refactor image name lookup * mroe refactoring * ensure str does not cause an issue * update referenced function * fix cal sig * simplify method and add test * refactor * ignore wrong typings * fix deprecated feature * simplify * ensure image tests do their job * simplify * re-add type check * fix test * fix assertations - wonder how long this was broken * bump to newer versions * bump deps * fix assertation
92 lines
3.2 KiB
YAML
92 lines
3.2 KiB
YAML
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
exclude: |
|
|
(?x)^(
|
|
src/backend/InvenTree/InvenTree/static/.*|
|
|
src/backend/InvenTree/locale/.*|
|
|
src/frontend/src/locales/.* |
|
|
.*/migrations/.* |
|
|
src/frontend/yarn.lock
|
|
)$
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
exclude: mkdocs.yml
|
|
- id: mixed-line-ending
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.14.3
|
|
hooks:
|
|
- id: ruff-format
|
|
args: [--preview]
|
|
- id: ruff-check
|
|
args: [
|
|
--fix,
|
|
# --unsafe-fixes,
|
|
--preview
|
|
]
|
|
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
rev: 0.7.12
|
|
hooks:
|
|
- id: pip-compile
|
|
name: pip-compile requirements-dev.in
|
|
args: [src/backend/requirements-dev.in, -o, src/backend/requirements-dev.txt, --no-strip-extras, --generate-hashes]
|
|
files: src/backend/requirements-dev\.(in|txt)$
|
|
- id: pip-compile
|
|
name: pip-compile requirements.txt
|
|
args: [src/backend/requirements.in, -o, src/backend/requirements.txt, --no-strip-extras, --generate-hashes]
|
|
files: src/backend/requirements\.(in|txt)$
|
|
- id: pip-compile
|
|
name: pip-compile requirements.txt
|
|
args: [contrib/dev_reqs/requirements.in, -o, contrib/dev_reqs/requirements.txt, --no-strip-extras, --generate-hashes, -b, src/backend/requirements.txt]
|
|
files: contrib/dev_reqs/requirements\.(in|txt)$
|
|
- id: pip-compile
|
|
name: pip-compile requirements.txt
|
|
args: [docs/requirements.in, -o, docs/requirements.txt, --no-strip-extras, --generate-hashes, -b, src/backend/requirements.txt]
|
|
files: docs/requirements\.(in|txt)$
|
|
- id: pip-compile
|
|
name: pip-compile requirements.txt
|
|
args: [contrib/container/requirements.in, -o, contrib/container/requirements.txt, --python-version=3.11, --no-strip-extras, --generate-hashes, -b, src/backend/requirements.txt]
|
|
files: contrib/container/requirements\.(in|txt)$
|
|
- repo: https://github.com/Riverside-Healthcare/djLint
|
|
rev: v1.36.4
|
|
hooks:
|
|
- id: djlint-django
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.4.1
|
|
hooks:
|
|
- id: codespell
|
|
additional_dependencies:
|
|
- tomli
|
|
exclude: >
|
|
(?x)^(
|
|
docs/docs/stylesheets/.*|
|
|
docs/docs/javascripts/.*|
|
|
docs/docs/webfonts/.* |
|
|
src/frontend/src/locales/.* |
|
|
pyproject.toml |
|
|
src/frontend/vite.config.ts |
|
|
)$
|
|
- repo: https://github.com/biomejs/pre-commit
|
|
rev: v2.0.0-beta.5
|
|
hooks:
|
|
- id: biome-check
|
|
additional_dependencies: ["@biomejs/biome@1.9.4"]
|
|
files: ^src/frontend/.*\.(js|ts|tsx)$
|
|
- repo: https://github.com/gitleaks/gitleaks
|
|
rev: v8.27.2
|
|
hooks:
|
|
- id: gitleaks
|
|
language_version: 1.23.6
|
|
#- repo: https://github.com/jumanjihouse/pre-commit-hooks
|
|
# rev: 3.0.0
|
|
# hooks:
|
|
# - id: shellcheck
|
|
- repo: https://github.com/isidentical/teyit
|
|
rev: 0.4.3
|
|
hooks:
|
|
- id: teyit
|