Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dev = [
"pytest-timeout<3.0.0",
"pytest-xdist<4.0.0",
"pytest<10.0.0",
"ruff~=0.14.0",
"ruff~=0.16.0",
"setuptools", # setuptools are used by pytest, but not explicitly required
"ty~=0.0.0",
]
Expand All @@ -67,12 +67,20 @@ only-include = [

[tool.ruff]
line-length = 120
include = ["src/**/*.py", "tests/**/*.py"]
include = [
"**/*.py",
# Ruff formats Python code blocks embedded in Markdown files.
"**/*.md",
"**/*.mdx",
]
# MDX is Markdown; without this mapping Ruff would try to parse `.mdx` files as Python.
extension = { mdx = "markdown" }

[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM812", # This rule may cause conflicts when used with the formatter
"CPY001", # Missing copyright notice at top of file
"D100", # Missing docstring in public module
"D104", # Missing docstring in public package
"D107", # Missing docstring in `__init__`
Expand Down
41 changes: 20 additions & 21 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading