mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 09:32:26 +00:00
Tweak ruff configuration
Add I - isort rules (order of imports); Ignore line too long warnings.
This commit is contained in:
parent
fe64db4b70
commit
5abe42f6d3
@ -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"]
|
||||
|
Loading…
Reference in New Issue
Block a user