2022-05-15 22:15:25 +00:00
|
|
|
# See https://pre-commit.com for more information
|
|
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
2022-05-28 00:38:12 +00:00
|
|
|
exclude: |
|
|
|
|
(?x)^(
|
|
|
|
src/backend/InvenTree/InvenTree/static/.*|
|
2023-08-15 02:47:19 +00:00
|
|
|
src/backend/InvenTree/locale/.*|
|
2024-01-10 13:16:13 +00:00
|
|
|
src/frontend/src/locales/.* |
|
2024-03-21 22:23:22 +00:00
|
|
|
.*/migrations/.* |
|
|
|
|
src/frontend/yarn.lock
|
2022-05-28 00:38:12 +00:00
|
|
|
)$
|
2022-05-15 22:15:25 +00:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2023-10-17 20:27:28 +00:00
|
|
|
rev: v4.5.0
|
2022-05-15 22:15:25 +00:00
|
|
|
hooks:
|
|
|
|
- id: trailing-whitespace
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: check-yaml
|
|
|
|
- id: mixed-line-ending
|
2024-01-10 13:16:13 +00:00
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
2024-03-21 22:19:29 +00:00
|
|
|
rev: v0.3.4
|
2024-01-10 13:16:13 +00:00
|
|
|
hooks:
|
2024-01-11 00:28:58 +00:00
|
|
|
- id: ruff-format
|
|
|
|
args: [--preview]
|
2024-01-10 13:16:13 +00:00
|
|
|
- id: ruff
|
|
|
|
args: [
|
2024-01-11 00:28:58 +00:00
|
|
|
--fix,
|
2024-01-10 13:16:13 +00:00
|
|
|
--preview
|
|
|
|
]
|
2024-03-24 06:13:05 +00:00
|
|
|
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
|
|
rev: v0.1.24
|
2022-06-28 12:12:00 +00:00
|
|
|
hooks:
|
|
|
|
- id: pip-compile
|
|
|
|
name: pip-compile requirements-dev.in
|
2024-03-21 22:19:29 +00:00
|
|
|
args: [src/backend/requirements-dev.in, -o, src/backend/requirements-dev.txt, --python-version=3.9, --no-strip-extras]
|
2022-06-28 12:12:00 +00:00
|
|
|
files: src/backend/requirements-dev\.(in|txt)$
|
|
|
|
- id: pip-compile
|
|
|
|
name: pip-compile requirements.txt
|
2024-03-21 22:19:29 +00:00
|
|
|
args: [src/backend/requirements.in, -o, src/backend/requirements.txt,--python-version=3.9, --no-strip-extras]
|
2022-06-28 12:12:00 +00:00
|
|
|
files: src/backend/requirements\.(in|txt)$
|
2023-05-02 10:03:52 +00:00
|
|
|
- repo: https://github.com/Riverside-Healthcare/djLint
|
2024-02-06 11:00:22 +00:00
|
|
|
rev: v1.34.1
|
2023-05-02 10:03:52 +00:00
|
|
|
hooks:
|
|
|
|
- id: djlint-django
|
2023-06-03 14:04:52 +00:00
|
|
|
- repo: https://github.com/codespell-project/codespell
|
2023-10-17 20:27:28 +00:00
|
|
|
rev: v2.2.6
|
2023-06-03 14:04:52 +00:00
|
|
|
hooks:
|
|
|
|
- id: codespell
|
|
|
|
exclude: >
|
|
|
|
(?x)^(
|
|
|
|
docs/docs/stylesheets/.*|
|
|
|
|
docs/docs/javascripts/.*|
|
2023-07-20 22:54:57 +00:00
|
|
|
docs/docs/webfonts/.* |
|
|
|
|
src/frontend/src/locales/.* |
|
2023-06-03 14:04:52 +00:00
|
|
|
)$
|
2023-07-18 12:45:49 +00:00
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
2024-02-06 11:00:22 +00:00
|
|
|
rev: "v4.0.0-alpha.8"
|
2023-07-18 12:45:49 +00:00
|
|
|
hooks:
|
|
|
|
- id: prettier
|
|
|
|
files: ^src/frontend/.*\.(js|jsx|ts|tsx)$
|
|
|
|
additional_dependencies:
|
|
|
|
- "prettier@^2.4.1"
|
|
|
|
- "@trivago/prettier-plugin-sort-imports"
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-eslint
|
2024-03-24 06:13:05 +00:00
|
|
|
rev: "v9.0.0-rc.0"
|
2023-07-18 12:45:49 +00:00
|
|
|
hooks:
|
|
|
|
- id: eslint
|
|
|
|
additional_dependencies:
|
|
|
|
- eslint@^8.41.0
|
|
|
|
- eslint-config-google@^0.14.0
|
|
|
|
- eslint-plugin-react@6.10.3
|
|
|
|
- babel-eslint@6.1.2
|
|
|
|
- "@typescript-eslint/eslint-plugin@latest"
|
|
|
|
- "@typescript-eslint/parser"
|
|
|
|
files: ^src/frontend/.*\.(js|jsx|ts|tsx)$
|
2024-03-20 23:11:49 +00:00
|
|
|
- repo: https://github.com/gitleaks/gitleaks
|
2024-03-21 22:19:29 +00:00
|
|
|
rev: v8.18.2
|
2024-03-20 23:11:49 +00:00
|
|
|
hooks:
|
|
|
|
- id: gitleaks
|
|
|
|
#- repo: https://github.com/jumanjihouse/pre-commit-hooks
|
|
|
|
# rev: 3.0.0
|
|
|
|
# hooks:
|
|
|
|
# - id: shellcheck
|