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
|
2022-06-09 01:47:29 +00:00
|
|
|
rev: v4.3.0
|
2022-05-15 22:15:25 +00:00
|
|
|
hooks:
|
|
|
|
- id: trailing-whitespace
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: check-yaml
|
|
|
|
- id: check-added-large-files
|
|
|
|
- id: mixed-line-ending
|
2022-05-15 22:20:07 +00:00
|
|
|
- repo: https://github.com/pycqa/flake8
|
2022-10-06 11:32:01 +00:00
|
|
|
rev: '5.0.4'
|
2022-05-15 22:20:07 +00:00
|
|
|
hooks:
|
|
|
|
- id: flake8
|
2022-06-05 22:56:52 +00:00
|
|
|
additional_dependencies: [
|
|
|
|
'flake8-bugbear',
|
|
|
|
'flake8-docstrings',
|
|
|
|
'flake8-string-format',
|
|
|
|
'pep8-naming ',
|
|
|
|
]
|
2022-05-15 23:13:04 +00:00
|
|
|
- repo: https://github.com/pycqa/isort
|
|
|
|
rev: '5.10.1'
|
|
|
|
hooks:
|
|
|
|
- id: isort
|
2022-06-28 12:12:00 +00:00
|
|
|
- repo: https://github.com/jazzband/pip-tools
|
2022-08-01 04:35:23 +00:00
|
|
|
rev: 6.8.0
|
2022-06-28 12:12:00 +00:00
|
|
|
hooks:
|
|
|
|
- id: pip-compile
|
|
|
|
name: pip-compile requirements-dev.in
|
|
|
|
args: [--generate-hashes, requirements-dev.in, -o, requirements-dev.txt]
|
|
|
|
files: ^requirements-dev\.(in|txt)$
|
|
|
|
- id: pip-compile
|
|
|
|
name: pip-compile requirements.txt
|
|
|
|
args: [requirements.in, -o, requirements.txt]
|
|
|
|
files: ^requirements\.(in|txt)$
|