File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,6 @@ extend-select = [
125
125
" TID251" ,
126
126
]
127
127
flake8-quotes = { inline-quotes = " single" , multiline-quotes = " double" }
128
- isort = { combine-as-imports = true , known-first-party = [" pydantic_ai" ] }
129
128
mccabe = { max-complexity = 15 }
130
129
ignore = [
131
130
" D100" , # ignore missing docstring in module
@@ -135,6 +134,12 @@ ignore = [
135
134
" D107" , # ignore missing docstring in __init__ methods
136
135
]
137
136
137
+ [tool .ruff .lint .isort ]
138
+ combine-as-imports = true
139
+ known-first-party = [" pydantic_ai" ]
140
+ # weird issue with ruff thinking fasta2a is still editable
141
+ known-third-party = [" fasta2a" ]
142
+
138
143
[tool .ruff .lint .pydocstyle ]
139
144
convention = " google"
140
145
@@ -187,10 +192,7 @@ files = "tests/typed_agent.py,tests/typed_graph.py"
187
192
strict = true
188
193
189
194
[tool .pytest .ini_options ]
190
- testpaths = [
191
- " tests" ,
192
- " docs/.hooks"
193
- ]
195
+ testpaths = [" tests" , " docs/.hooks" ]
194
196
xfail_strict = true
195
197
filterwarnings = [
196
198
" error" ,
You can’t perform that action at this time.
0 commit comments