infra! Removed black (replaced by Ruff for formatting)

This commit is contained in:
2025-12-18 07:49:05 +01:00
parent f88f512cb0
commit b350bb12d3
3 changed files with 130 additions and 224 deletions

View File

@@ -16,12 +16,18 @@ repos:
- repo: local
hooks:
- id: ruff
name: Ruff
- id: ruff-check
name: Ruff Linter
entry: bash -c 'cd brain && poetry run ruff check --fix .'
language: system
types: [python]
- id: ruff-format
name: Ruff Formatter
entry: bash -c 'cd brain && poetry run ruff format .'
language: system
types: [python]
- id: system-pytest
name: Pytest
entry: bash -c 'cd brain && poetry run pytest -n auto --dist=loadscope'