-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
32 lines (30 loc) · 1.11 KB
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: check-added-large-files
- id: check-merge-conflict
- id: check-shebang-scripts-are-executable
- id: check-docstring-first
- id: debug-statements
- id: check-ast
- id: check-toml
- id: check-yaml
args: ['--unsafe'] # needed for !! tags in mkdocs.yml
- id: end-of-file-fixer
- id: mixed-line-ending
args: ['--fix=auto'] # replace 'auto' with 'lf' to enforce Linux/Mac line endings or 'crlf' for Windows
# Ruff replaces black, flake8, autoflake, isort and more
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.4.10'
hooks:
- id: ruff
- id: ruff-format
args: [--check, --config, ./pyproject.toml]
# - repo: https://github.com/pre-commit/mirrors-mypy
# rev: 'v1.10.0' # make sure this is always consistent with hatch configs
# hooks:
# - id: mypy
# args: ["--install-types", "--non-interactive", "--config-file", "./pyproject.toml", "--ignore-missing-imports"]
# additional_dependencies: [types-tabulate, types-cachetools, pydantic]