Ruff: propogate config from OP (#916)

This commit is contained in:
Justin Newberry 2023-08-14 12:52:47 -07:00 committed by GitHub
parent a1582f5e28
commit 98c2b11378
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -13,7 +13,8 @@ ignore = ["E111", "E114"]
# https://beta.ruff.rs/docs/configuration/#using-pyprojecttoml
[tool.ruff]
select = ["E", "F", "W"]
ignore = ["W292", "E741"]
select = ["E", "F", "W", "PIE", "C4", "ISC", "RUF100", "A"]
ignore = ["W292", "E741", "E402", "C408", "ISC003"]
line-length = 160
target-version="py311"
target-version="py311"
flake8-implicit-str-concat.allow-multiline=false