Skip to content

Commit 188b7dd

Browse files
committed
chore: preserve Ruff lint behavior
1 parent ea3729c commit 188b7dd

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

libs/ibm/pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ fix = true
7777

7878
[tool.ruff.format]
7979
docstring-code-format = true
80+
exclude = ["*.md"]
8081

8182
[tool.ruff.lint]
8283
pydocstyle.convention = "google"
@@ -88,8 +89,11 @@ flake8-annotations.mypy-init-return = true
8889
select = ["ALL"]
8990
ignore = [
9091
"COM812", # Messes with the formatter
92+
"CPY001", # Copyright notices are not required
9193
"C901", # Complex functions
94+
"ISC004", # Allow implicit string concatenation in collections
9295
"PERF203", # Rarely useful
96+
"PLR0917", # Too many positional arguments
9397
"PLR0911", # Too many return statements
9498
"PLR0912", # Too many branches
9599
"PLR0913", # Too many arguments

0 commit comments

Comments
 (0)