disable ruff-format in pre-commit

This commit is contained in:
Sina Atalay
2025-01-20 09:55:54 -05:00
parent 02b7350734
commit 0439f14d77
2 changed files with 1 additions and 3 deletions

View File

@@ -4,5 +4,3 @@ repos:
hooks:
# Run the linter.
- id: ruff
# Run the formatter.
- id: ruff-format

View File

@@ -138,7 +138,7 @@ features = ["full"] # to install full optional dependencies
# Hatch allows us to define scripts that can be run in the activated virtual environment
# with `hatch run ENV_NAME:SCRIPT_NAME`.
# Format all the code in the `rendercv` package with `black`:
format = "ruff check --fix && black rendercv docs tests && ruff format" # hatch run format
format = "black rendercv docs tests && ruff check --fix && ruff format" # hatch run format
# Lint the code in the `rendercv` package with `ruff`:
lint = "ruff check" # hatch run lint
# Check types in the `rendercv` package with `pyright`: