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