mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
23 lines
533 B
TOML
23 lines
533 B
TOML
[tool.ruff]
|
|
line-length = 160
|
|
target-version = 'py37'
|
|
select = ['E', 'F']
|
|
ignore = ['E741', 'E402', 'E722', 'E401']
|
|
builtins = ['_']
|
|
|
|
[tool.ruff.per-file-ignores]
|
|
"src/calibre/ebooks/unihandecode/unicodepoints.py" = ["E501"]
|
|
"src/qt/__init__.py" = ["E501"]
|
|
|
|
[tool.black]
|
|
target-version = ['py37']
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
combine_as_imports = true
|
|
multi_line_output = 5
|
|
known_future_library = "__python__"
|
|
known_third_party = "qt"
|
|
known_standard_library = "aes,elementmaker,encodings"
|
|
known_first_party = "calibre_extensions"
|