Skip to content

Commit 3161c10

Browse files
committed
Update ruff.toml to exclude all *pb2*.*
1 parent 931b987 commit 3161c10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/linters/.ruff.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ exclude = [
8282
"venv",
8383
"*/migrations/*",
8484
"noxfile.py",
85-
"src/a2a/grpc/*.*",
85+
"*pb2*.*",
8686
]
8787

8888
[lint.isort]
@@ -140,7 +140,7 @@ inline-quotes = "single"
140140
"types.py" = ["D", "E501", "N815"] # Ignore docstring and annotation issues in types.py
141141

142142
[format]
143-
exclude = ["types.py", "src/a2a/grpc/*.*"]
143+
exclude = ["types.py", "*pb2*.*"]
144144
docstring-code-format = true
145145
docstring-code-line-length = "dynamic" # Or set to 80
146146
quote-style = "single"

0 commit comments

Comments
 (0)