mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
64 lines
1.5 KiB
YAML
64 lines
1.5 KiB
YAML
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
repos:
|
|
- repo: https://github.com/pycqa/flake8
|
|
rev: "7.0.0"
|
|
hooks:
|
|
- id: flake8
|
|
additional_dependencies: [Flake8-pyproject]
|
|
# stages: [push]
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: "v1.9.0"
|
|
hooks:
|
|
- id: mypy
|
|
exclude: build_helpers
|
|
additional_dependencies:
|
|
- types-cachetools==5.3.0.7
|
|
- types-filelock==3.2.7
|
|
- types-requests==2.31.0.20240406
|
|
- types-tabulate==0.9.0.20240106
|
|
- types-python-dateutil==2.9.0.20240316
|
|
- SQLAlchemy==2.0.29
|
|
# stages: [push]
|
|
|
|
- repo: https://github.com/pycqa/isort
|
|
rev: "5.13.2"
|
|
hooks:
|
|
- id: isort
|
|
name: isort (python)
|
|
# stages: [push]
|
|
|
|
- repo: https://github.com/charliermarsh/ruff-pre-commit
|
|
# Ruff version.
|
|
rev: 'v0.4.1'
|
|
hooks:
|
|
- id: ruff
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.6.0
|
|
hooks:
|
|
- id: end-of-file-fixer
|
|
exclude: |
|
|
(?x)^(
|
|
tests/.*|
|
|
.*\.svg|
|
|
.*\.yml|
|
|
.*\.json
|
|
)$
|
|
- id: mixed-line-ending
|
|
- id: debug-statements
|
|
- id: check-ast
|
|
- id: trailing-whitespace
|
|
exclude: |
|
|
(?x)^(
|
|
.*\.md
|
|
)$
|
|
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.2.6
|
|
hooks:
|
|
- id: codespell
|
|
additional_dependencies:
|
|
- tomli
|