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 cbe5d9d commit a69d5e0Copy full SHA for a69d5e0
pyproject.toml
@@ -212,6 +212,11 @@ max-attributes = 12
212
max-line-length = 88 # Match ruff line-length
213
214
[tool.pylint.main]
215
+# Files or directories matching the regular expression patterns are skipped.
216
+# The regex matches against base names, not paths. The default value ignores
217
+ignore-patterns = [
218
+ "version.py", # setuptools-scm version files, SEE: https://github.com/pylint-dev/pylint/issues/10479
219
+]
220
# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
221
# number of processors available to use, and will cap the count on Windows to
222
# avoid hangs.
0 commit comments