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/.*|
|
|
|
|
InvenTree/locale/.*
|
|
|
|
)$
|
2022-05-15 22:15:25 +00:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2023-01-08 21:23:43 +00:00
|
|
|
rev: v4.4.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
|
2022-05-15 22:20:07 +00:00
|
|
|
- repo: https://github.com/pycqa/flake8
|
2023-01-08 21:23:43 +00:00
|
|
|
rev: '6.0.0'
|
2022-05-15 22:20:07 +00:00
|
|
|
hooks:
|
|
|
|
- id: flake8
|
2022-06-05 22:56:52 +00:00
|
|
|
additional_dependencies: [
|
2023-04-28 10:49:53 +00:00
|
|
|
'flake8-bugbear',
|
|
|
|
'flake8-comprehensions',
|
2022-06-05 22:56:52 +00:00
|
|
|
'flake8-docstrings',
|
|
|
|
'flake8-string-format',
|
2023-04-28 10:49:53 +00:00
|
|
|
'flake8-tidy-imports',
|
|
|
|
'pep8-naming'
|
2022-06-05 22:56:52 +00:00
|
|
|
]
|
2022-05-15 23:13:04 +00:00
|
|
|
- repo: https://github.com/pycqa/isort
|
2023-02-19 10:33:04 +00:00
|
|
|
rev: '5.12.0'
|
2022-05-15 23:13:04 +00:00
|
|
|
hooks:
|
|
|
|
- id: isort
|
2022-06-28 12:12:00 +00:00
|
|
|
- repo: https://github.com/jazzband/pip-tools
|
2023-04-22 12:40:29 +00:00
|
|
|
rev: 6.13.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-06-17 11:55:25 +00:00
|
|
|
rev: v1.30.2
|
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
|
|
|
|
rev: v2.2.4
|
|
|
|
hooks:
|
|
|
|
- id: codespell
|
|
|
|
exclude: >
|
|
|
|
(?x)^(
|
|
|
|
docs/docs/stylesheets/.*|
|
|
|
|
docs/docs/javascripts/.*|
|
|
|
|
docs/docs/webfonts/.*
|
|
|
|
)$
|
2023-07-18 12:45:49 +00:00
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
|
|
rev: "v3.0.0-alpha.9-for-vscode"
|
|
|
|
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
|
|
|
|
rev: "v8.42.0"
|
|
|
|
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)$
|