freqtrade_origin/.pre-commit-config.yaml

64 lines
1.6 KiB
YAML
Raw Normal View History

2022-04-03 13:27:58 +00:00
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
2022-04-23 09:12:43 +00:00
- repo: https://github.com/pycqa/flake8
2024-08-06 03:02:53 +00:00
rev: "7.1.1"
2022-04-03 13:27:58 +00:00
hooks:
2022-04-23 09:12:43 +00:00
- id: flake8
additional_dependencies: [Flake8-pyproject]
2022-04-08 15:46:53 +00:00
# stages: [push]
2022-04-05 04:51:07 +00:00
2022-04-23 09:12:43 +00:00
- repo: https://github.com/pre-commit/mirrors-mypy
2024-08-27 03:02:41 +00:00
rev: "v1.11.2"
2022-04-03 13:27:58 +00:00
hooks:
2022-04-23 09:12:43 +00:00
- id: mypy
exclude: build_helpers
2022-04-25 08:15:07 +00:00
additional_dependencies:
2024-08-27 17:44:09 +00:00
- types-cachetools==5.5.0.20240820
2022-06-13 04:58:06 +00:00
- types-filelock==3.2.7
2024-09-09 04:44:35 +00:00
- types-requests==2.32.0.20240907
2024-01-08 08:44:14 +00:00
- types-tabulate==0.9.0.20240106
2024-09-09 04:44:35 +00:00
- types-python-dateutil==2.9.0.20240906
- SQLAlchemy==2.0.34
2022-04-08 15:46:53 +00:00
# stages: [push]
2022-04-05 04:51:07 +00:00
2022-04-23 09:12:43 +00:00
- repo: https://github.com/pycqa/isort
2023-12-21 19:18:40 +00:00
rev: "5.13.2"
2022-04-05 04:51:07 +00:00
hooks:
- id: isort
name: isort (python)
2022-04-08 15:46:53 +00:00
# stages: [push]
2022-04-23 09:12:43 +00:00
- repo: https://github.com/charliermarsh/ruff-pre-commit
# Ruff version.
2024-09-03 03:02:47 +00:00
rev: 'v0.6.3'
hooks:
- id: ruff
2022-04-23 09:12:43 +00:00
- repo: https://github.com/pre-commit/pre-commit-hooks
2024-04-09 03:03:47 +00:00
rev: v4.6.0
2022-04-23 09:12:43 +00:00
hooks:
- id: end-of-file-fixer
exclude: |
(?x)^(
tests/.*|
2022-09-28 07:24:43 +00:00
.*\.svg|
.*\.yml|
.*\.json
2022-04-23 09:12:43 +00:00
)$
- id: mixed-line-ending
- id: debug-statements
- id: check-ast
- id: trailing-whitespace
exclude: |
(?x)^(
.*\.md
)$
2024-04-19 16:12:24 +00:00
- repo: https://github.com/codespell-project/codespell
2024-05-28 04:39:48 +00:00
rev: v2.3.0
2024-04-19 16:12:24 +00:00
hooks:
- id: codespell
additional_dependencies:
- tomli