]> git.lyx.org Git - lyx.git/blobdiff - lib/pyproject.toml
Remove profiling.py
[lyx.git] / lib / pyproject.toml
index 88d360fc1ddaac42d4c634f03330619b32932289..93d5716fd71a083b24ae4c4a5f6df138dd9b2081 100644 (file)
@@ -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"]