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 e40d976 commit 3a3879bCopy full SHA for 3a3879b
.github/linters/.ruff.toml
@@ -82,7 +82,9 @@ exclude = [
82
"venv",
83
"*/migrations/*",
84
"noxfile.py",
85
- "*pb2*.*",
+ "src/a2a/grpc/a2a_pb2_grpc.py",
86
+ "src/a2a/grpc/a2a_pb2.py",
87
+ "src/a2a/grpc/a2a_pb2.pyi",
88
]
89
90
[lint.isort]
@@ -140,7 +142,12 @@ inline-quotes = "single"
140
142
"types.py" = ["D", "E501", "N815"] # Ignore docstring and annotation issues in types.py
141
143
144
[format]
-exclude = ["types.py", "*pb2*.*"]
145
+exclude = [
146
+ "types.py",
147
148
149
150
+]
151
docstring-code-format = true
152
docstring-code-line-length = "dynamic" # Or set to 80
153
quote-style = "single"
0 commit comments