1
0
Fork 0

Adding upstream version 1.31.2.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-04 09:25:34 +02:00
parent 9aaa9c7fe0
commit 5829a372a2
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
23 changed files with 166 additions and 107 deletions

View file

@ -62,7 +62,7 @@ line-length = 140
[tool.ruff.lint]
select = [
'A',
'I',
# 'I', # todo enableme imports
'E',
'W',
'F',
@ -79,12 +79,16 @@ ignore = [
'E114', # indentation-with-invalid-multiple-comment
'E117', # over-indented
'W191', # tab-indentation
# TODO
'PIE796', # todo enableme Enum contains duplicate value
]
[tool.ruff.lint.isort]
force-sort-within-sections = true
known-first-party = [
'mycli',
'test',
'steps',
]
[tool.ruff.format]