There was an error while loading. Please reload this page.
1 parent ea3729c commit 188b7ddCopy full SHA for 188b7dd
1 file changed
libs/ibm/pyproject.toml
@@ -77,6 +77,7 @@ fix = true
77
78
[tool.ruff.format]
79
docstring-code-format = true
80
+exclude = ["*.md"]
81
82
[tool.ruff.lint]
83
pydocstyle.convention = "google"
@@ -88,8 +89,11 @@ flake8-annotations.mypy-init-return = true
88
89
select = ["ALL"]
90
ignore = [
91
"COM812", # Messes with the formatter
92
+ "CPY001", # Copyright notices are not required
93
"C901", # Complex functions
94
+ "ISC004", # Allow implicit string concatenation in collections
95
"PERF203", # Rarely useful
96
+ "PLR0917", # Too many positional arguments
97
"PLR0911", # Too many return statements
98
"PLR0912", # Too many branches
99
"PLR0913", # Too many arguments
0 commit comments