We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b47fdc5 + c70dbef commit d10fc30Copy full SHA for d10fc30
pyproject.toml
@@ -42,6 +42,9 @@ exclude = [
42
[tool.ruff.format]
43
indent-style = "tab"
44
line-ending = "lf"
45
+# Preserve indentation of items separated by commas and newlines,
46
+# rather than wrapping to a single line.
47
+skip-magic-trailing-comma = true
48
49
[tool.ruff.lint.mccabe]
50
max-complexity = 15
@@ -53,6 +56,12 @@ ignore = [
53
56
]
54
57
logger-objects = ["logHandler.log"]
55
58
59
+[tool.ruff.lint.per-file-ignores]
60
+# sconscripts contains many inbuilt functions not recognised by the lint,
61
+# so ignore F821.
62
+"sconstruct" = ["F821"]
63
+"*sconscript" = ["F821"]
64
+
65
[tool.licensecheck]
66
using = "requirements:requirements.txt"
67
only_licenses = ["BSD", "MIT", "Python", "LGPLV3+"]
0 commit comments