11 lines
182 B
TOML
11 lines
182 B
TOML
|
|
extend = "../../.ruff.toml" # Inherit the project-wide settings
|
||
|
|
|
||
|
|
target-version = "py313"
|
||
|
|
|
||
|
|
[lint]
|
||
|
|
select = [
|
||
|
|
"F", # pyflakes
|
||
|
|
"I", # isort
|
||
|
|
"UP", # pyupgrade
|
||
|
|
]
|