-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Antonio Valentino
authored and
Antonio Valentino
committed
Nov 15, 2024
1 parent
f3a2d1a
commit ad35ef9
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v5.0.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
- id: check-added-large-files | ||
- id: check-toml | ||
- id: mixed-line-ending | ||
- id: requirements-txt-fixer | ||
- id: check-merge-conflict | ||
- id: detect-private-key | ||
|
||
# - repo: https://github.com/astral-sh/ruff-pre-commit | ||
# rev: v0.7.0 | ||
# hooks: | ||
# - id: ruff | ||
# args: [ --fix ] | ||
# - id: ruff-format | ||
|
||
# - repo: https://github.com/asottile/pyupgrade | ||
# rev: v3.19.0 | ||
# hooks: | ||
# - id: pyupgrade | ||
# args: [--py39-plus] | ||
|
||
- repo: https://github.com/pycqa/flake8 | ||
rev: 7.1.1 | ||
hooks: | ||
- id: flake8 | ||
- repo: https://github.com/pycqa/pydocstyle | ||
rev: 6.3.0 | ||
hooks: | ||
- id: pydocstyle | ||
exclude: tests|examples|data|docs | ||
- repo: https://github.com/pycqa/isort | ||
rev: 5.13.2 | ||
hooks: | ||
- id: isort | ||
name: isort (python) | ||
- repo: https://github.com/psf/black-pre-commit-mirror | ||
rev: 24.8.0 | ||
hooks: | ||
- id: black | ||
language_version: python3.13 | ||
|
||
# - repo: https://github.com/pre-commit/mirrors-mypy | ||
# rev: v1.12.0 | ||
# hooks: | ||
# - id: mypy | ||
|
||
# - repo: https://github.com/codespell-project/codespell | ||
# rev: v2.2.4 | ||
# hooks: | ||
# - id: codespell | ||
# additional_dependencies: [tomli] |