diff --git a/lib/pyproject.toml b/lib/pyproject.toml index 88d360fc1d..2aa90e4058 100644 --- a/lib/pyproject.toml +++ b/lib/pyproject.toml @@ -18,3 +18,8 @@ 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] +# Ignore warnings like: Ambiguous variable name: `l` +# ambiguous-variable-name (E741) +ignore = ["E741"]