X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=lib%2Fpyproject.toml;h=93d5716fd71a083b24ae4c4a5f6df138dd9b2081;hb=7a79a416b8ab501ec8158afeb4171b5d92094b5e;hp=88d360fc1ddaac42d4c634f03330619b32932289;hpb=aaef6d269319e079c24fea186c2dc0063bc2a6f3;p=lyx.git diff --git a/lib/pyproject.toml b/lib/pyproject.toml index 88d360fc1d..93d5716fd7 100644 --- a/lib/pyproject.toml +++ b/lib/pyproject.toml @@ -18,3 +18,10 @@ docstring-code-format = true # This only has an effect when the `docstring-code-format` setting is # enabled. docstring-code-line-length = "dynamic" + +[tool.ruff.lint] +select = ["E", "F", "I"] +# Ignore warnings: +# line-too-long (E501) +# ambiguous-variable-name (E741): Ambiguous variable name: `l` +ignore = ["E501", "E741"]