Skip to content

Commit ba35efa

Browse files
committed
25th
1 parent 0a264aa commit ba35efa

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,11 @@ python_version = "3.13"
6363
strict = true
6464
show_error_codes = true
6565
disallow_untyped_defs = true
66-
exclude = ".*_test\.py|build/|dist/|.venv/|.scratch/|.nox/"
66+
exclude = ["build/", "dist/", ".venv/"]
6767
ignore_missing_imports = true
6868

6969
[tool.ruff]
7070
line-length = 88
7171
ignore = ["W503"]
7272
select = ["E", "F", "W", "B"]
73-
ignore = ["E501"] # Ignore line-length violations if necessary
74-
per-file-ignores = {
75-
"__init__.py": ["F401"], # Ignore unused imports in __init__.py
76-
}
7773
exclude = ["build/", "dist/", ".venv/"]

0 commit comments

Comments
 (0)