fix pyproject syntax, ignore E731

This commit is contained in:
lassulus
2024-03-03 06:19:55 +01:00
parent cde452f99b
commit cfdba84d9d
4 changed files with 8 additions and 8 deletions

View File

@@ -10,5 +10,5 @@ exclude = "clan_cli.nixpkgs"
[tool.ruff]
line-length = 88
target-version = "py311"
select = [ "E", "F", "I", "U", "N", "RUF", "ANN", "A" ]
ignore = [ "E501", "ANN101", "ANN401", "A003"]
lint.select = [ "E", "F", "I", "U", "N", "RUF", "ANN", "A" ]
lint.ignore = [ "E501", "ANN101", "ANN401", "A003"]