Tweak ruff configuration

Add I - isort rules (order of imports);
Ignore line too long warnings.
This commit is contained in:
José Matos 2024-06-18 10:24:09 +01:00
parent fe64db4b70
commit 5abe42f6d3

View File

@ -20,6 +20,8 @@ docstring-code-format = true
docstring-code-line-length = "dynamic"
[tool.ruff.lint]
# Ignore warnings like: Ambiguous variable name: `l`
# ambiguous-variable-name (E741)
ignore = ["E741"]
select = ["E", "F", "I"]
# Ignore warnings:
# line-too-long (E501)
# ambiguous-variable-name (E741): Ambiguous variable name: `l`
ignore = ["E501", "E741"]