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.
1 parent c112f2a commit da8eff0Copy full SHA for da8eff0
pyproject.toml
@@ -60,10 +60,25 @@ include = [
60
"src/**/*.py",
61
"etc/**/*.py",
62
"test/**/*.py",
63
+ "tests/**/*.py",
64
"doc/**/*",
65
+ "docs/**/*",
66
"*.py",
67
"."
68
]
69
+# ignore test data and testfiles: they should never be linted nor formatted
70
+exclude = [
71
+# main style
72
+ "**/tests/data/**/*",
73
+# scancode-toolkit
74
+ "**/tests/*/data/**/*",
75
+# dejacode, purldb
76
+ "**/tests/testfiles/**/*",
77
+# vulnerablecode, fetchcode
78
+ "**/tests/*/test_data/**/*",
79
+ "**/tests/test_data/**/*",
80
+]
81
+
82
83
[tool.ruff.lint]
84
# Rules: https://docs.astral.sh/ruff/rules/
0 commit comments