File size: 192 Bytes
f679000
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
# Ruff configuration
line-length = 120

[lint]
select = ["E", "F", "UP", "B", "SIM", "I"]
ignore = ["E501"]  # Ignore line length for now

[lint.per-file-ignores]
"tests/*" = ["F401", "F811"]