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-06-18 03:02:48 +00:00
|
|
|
rev: "7.1.0"
|
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-07-22 16:57:53 +00:00
|
|
|
rev: "v1.11.0"
|
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-07-22 04:50:42 +00:00
|
|
|
- types-cachetools==5.4.0.20240717
|
2022-06-13 04:58:06 +00:00
|
|
|
- types-filelock==3.2.7
|
2024-07-15 04:45:53 +00:00
|
|
|
- types-requests==2.32.0.20240712
|
2024-01-08 08:44:14 +00:00
|
|
|
- types-tabulate==0.9.0.20240106
|
2024-03-18 05:25:14 +00:00
|
|
|
- types-python-dateutil==2.9.0.20240316
|
2024-06-24 13:51:16 +00:00
|
|
|
- SQLAlchemy==2.0.31
|
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-07-23 03:02:43 +00:00
|
|
|
rev: 'v0.5.4'
|
2023-02-22 20:06:07 +00:00
|
|
|
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
|