Commit 36527de4 authored by Jan Reimes's avatar Jan Reimes
Browse files

chore(config): update exclude patterns in ruff.toml and ty.toml

* Added ".config/skills" to the exclude list in both configuration files.
* Ensures that the specified directory is ignored during linting and type checking.
parent 86470fa1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line

unsafe-fixes = true
exclude = [".venv"]
exclude = [".venv", ".config/skills"]
target-version = "py314"
line-length = 160
fix = true
+4 −0
Original line number Diff line number Diff line
@@ -9,6 +9,10 @@ include = [
    "src",
    "tests",
]
exclude = [
    ".venv",
    ".config/skills",
]

[terminal]
error-on-warning = true