Changes Formating Tools to Ruff

This commit is contained in:
2025-04-04 21:52:54 -03:00
parent d1984b8ae9
commit 18aab52f84
4 changed files with 49 additions and 124 deletions

View File

@@ -12,10 +12,9 @@ dependencies = [
[dependency-groups]
dev = [
"black>=25.1.0",
"isort>=6.0.1",
"poethepoet>=0.33.1",
"pre-commit>=4.2.0",
"ruff>=0.11.4",
]
@@ -34,13 +33,11 @@ build-backend = "hatchling.build"
# Linters
[tool.isort]
profile = "black"
line_length = 79
sections=[
"FUTURE",
"FIRSTPARTY",
"LOCALFOLDER",
"THIRDPARTY",
"STDLIB",
[tool.ruff.lint.isort]
section-order=[
"future",
"first-party",
"local-folder",
"third-party",
"standard-library",
]