File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 11ignore :
22 - " extern/**/*"
3- - " **/python "
3+ - " bindings/ **/* "
44 - " test/**/*"
5- - " src /mqt/debugger/dap/**/*"
6- - " src /mqt/debugger/dap/*"
5+ - " python /mqt/debugger/dap/**/*"
6+ - " python /mqt/debugger/dap/*"
77 - " app/*"
88 - " src/frontend/**/*"
99 - " **/__main__.py"
Original file line number Diff line number Diff line change @@ -207,7 +207,10 @@ ignore = [
207207 " S101" , # Use of assert detected
208208 " S404" , # `subprocess` module is possibly insecure
209209]
210- isort.required-imports = [" from __future__ import annotations" ]
210+
211+ [tool .ruff .lint .isort ]
212+ known-first-party = [" mqt.debugger" ]
213+ required-imports = [" from __future__ import annotations" ]
211214
212215[tool .ruff .lint .flake8-tidy-imports .banned-api ]
213216"typing.Callable".msg = " Use collections.abc.Callable instead."
You can’t perform that action at this time.
0 commit comments