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: [
|
|
|
|
'flake8-docstrings',
|
|
|
|
'flake8-string-format',
|
|
|
|
'pep8-naming ',
|
|
|
|
]
|
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)$
|