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
|
2023-12-16 19:32:37 +00:00
|
|
|
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
|
2022-04-25 09:23:45 +00:00
|
|
|
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-16 04:38:45 +00:00
|
|
|
- types-requests==2.32.0.20240914
|
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
|
2024-09-09 08:15:18 +00:00
|
|
|
- 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
|
|
|
|
2023-02-22 20:06:07 +00:00
|
|
|
- repo: https://github.com/charliermarsh/ruff-pre-commit
|
|
|
|
# Ruff version.
|
2024-09-10 03:03:23 +00:00
|
|
|
rev: 'v0.6.4'
|
2023-02-22 20:06:07 +00:00
|
|
|
hooks:
|
|
|
|
- id: ruff
|
2024-09-09 16:23:07 +00:00
|
|
|
- id: ruff-format
|
2023-02-22 20:06:07 +00:00
|
|
|
|
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
|