mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-27 11:06:44 +00:00
* bump pre-commit * add biome * autofixes * use number functions * fix string usage * use specific variable definition * fix missing translations * reduce alerts * add missing keys * fix index creation * fix more strings * fix types * fix function * add missing keys * fiy array access * fix string functions * do not redefine var * extend exlcusions * reduce unnecessary operators * simplify request * use number functions * fix missing translation * add missing type * fix filter * use newer func * remove unused fragment * fix confusing assigment * pass children as elements * add missing translation * fix imports * fix import * auto-fix problems * add autfix for unused imports * fix SAST error * fix useSelfClosingElements * fix useTemplate * add codespell exception * Update pui_printing.spec.ts * Update pui_printing.spec.ts * add vscode defaults
90 lines
3.0 KiB
YAML
90 lines
3.0 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: v4.6.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: mixed-line-ending
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.7.0
|
|
hooks:
|
|
- id: ruff-format
|
|
args: [--preview]
|
|
- id: ruff
|
|
args: [
|
|
--fix,
|
|
# --unsafe-fixes,
|
|
--preview
|
|
]
|
|
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
rev: 0.4.24
|
|
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]
|
|
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]
|
|
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]
|
|
files: contrib/container/requirements\.(in|txt)$
|
|
- repo: https://github.com/Riverside-Healthcare/djLint
|
|
rev: v1.35.2
|
|
hooks:
|
|
- id: djlint-django
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.3.0
|
|
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: "v0.5.0"
|
|
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.21.0
|
|
hooks:
|
|
- id: gitleaks
|
|
#- 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
|