You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
277 B
8 lines
277 B
11 months ago
|
# https://beta.ruff.rs/docs/configuration/#using-pyprojecttoml
|
||
|
[tool.ruff]
|
||
|
select = ["E", "F", "W", "PIE", "C4", "ISC", "RUF100", "A"]
|
||
|
ignore = ["W292", "E741", "E402", "C408", "ISC003"]
|
||
|
line-length = 160
|
||
|
target-version="py311"
|
||
|
flake8-implicit-str-concat.allow-multiline=false
|