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)^(
|
|
|
|
InvenTree/InvenTree/static/.*|
|
2023-08-15 02:47:19 +00:00
|
|
|
InvenTree/locale/.*|
|
2024-01-10 13:16:13 +00:00
|
|
|
src/frontend/src/locales/.*|
|
|
|
|
.*/migrations/.*
|
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
|
|
|
|
rev: v0.1.11
|
|
|
|
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
|
|
|
|
]
|
2022-06-28 12:12:00 +00:00
|
|
|
- repo: https://github.com/jazzband/pip-tools
|
2023-10-17 20:27:28 +00:00
|
|
|
rev: 7.3.0
|
2022-06-28 12:12:00 +00:00
|
|
|
hooks:
|
|
|
|
- id: pip-compile
|
|
|
|
name: pip-compile requirements-dev.in
|
2023-04-18 21:10:02 +00:00
|
|
|
args: [requirements-dev.in, -o, requirements-dev.txt]
|
2022-06-28 12:12:00 +00:00
|
|
|
files: ^requirements-dev\.(in|txt)$
|
|
|
|
- id: pip-compile
|
|
|
|
name: pip-compile requirements.txt
|
|
|
|
args: [requirements.in, -o, requirements.txt]
|
|
|
|
files: ^requirements\.(in|txt)$
|
2023-05-02 10:03:52 +00:00
|
|
|
- repo: https://github.com/Riverside-Healthcare/djLint
|
2023-10-17 20:27:28 +00:00
|
|
|
rev: v1.34.0
|
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
|
2023-10-17 20:27:28 +00:00
|
|
|
rev: "v3.0.3"
|
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
|
2023-10-17 20:27:28 +00:00
|
|
|
rev: "v8.51.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)$
|