added ruff the treefmt

This commit is contained in:
2025-10-30 19:27:59 -04:00
parent a6e2334999
commit 65fca5c8a4
2 changed files with 78 additions and 0 deletions

View File

@@ -12,3 +12,15 @@ command = "nixfmt"
#options = []
# Glob pattern of files to include
includes = ["*.nix"]
[formatter.ruff-format]
command = "ruff"
options = ["format"]
includes = ["python/**/*.py"]
priority = 0
[formatter.ruff]
command = "ruff"
options = ["check", "--fix"]
includes = ["python/**/*.py"]
priority = 1