mirror of
https://github.com/inventree/InvenTree.git
synced 2025-07-01 11:10:54 +00:00
Remove pre-commit file
This commit is contained in:
@ -1,90 +0,0 @@
|
|||||||
# 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
|
|
||||||
- id: mixed-line-ending
|
|
||||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
||||||
rev: v0.11.6
|
|
||||||
hooks:
|
|
||||||
- id: ruff-format
|
|
||||||
args: [--preview]
|
|
||||||
- id: ruff
|
|
||||||
args: [
|
|
||||||
--fix,
|
|
||||||
# --unsafe-fixes,
|
|
||||||
--preview
|
|
||||||
]
|
|
||||||
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
||||||
rev: 0.6.14
|
|
||||||
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.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.1
|
|
||||||
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.24.3
|
|
||||||
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
|
|
Reference in New Issue
Block a user