DetachHead
DetachHead
oops, in my example i had it the wrong way around. it's the `Callable` inlay hint that doesn't work: ```py def f(a: int, /) -> str: ... x = f...
so you want to disable basedpyright's type checking entirely? setting `typeCheckingMode` to `'off'` in the `basedpyright` section should do the trick
maybe check [this repo's `pyproject.toml`](https://github.com/DetachHead/basedpyright/blob/211d5b08d10d697dc831dfad30d9c180b09116e9/pyproject.toml#L191), since i also use ruff and disable conflicting rules maybe i could add a new `typeCheckingMode` that enables everything except the rules covered by ruff,...
yeah that's the same issue as #149
i think that only disables things like autocomplete, import suggestions, go to definition, etc. which are all things ruff currently can't do
related? https://github.com/microsoft/pyright/issues/6624
#352 fixes the annoying `reportMissingSuperCall` errors on abstract methods, which makes me want to prioritize this as converting these to `ABC`s will make them far less annoying to work with....
oh wait, it actually fixes that case too nvm
> oh wait, it actually fixes that case too nvm [no it doesnt, idiot](http://basedpyright.com/?pyrightVersion=1.12.2&typeCheckingMode=all&code=GYJw9gtgBAxmB2AXApgD0QGwJYCMpYgAcwREoBBHAZ0RAEMZEBhBFdAWTvjoHNkQAsAChQkKIgCehLPB74iJMmABu-EFgAmyYTqEwMdKlSgAxMGAAUlGvUYskaRJ258QAbQByCZAF0AlABcwlAhUAACKmqa2kKhUFrAUAD6ScgOICkWVMgYwIHBcaGEhlRAA)
i think neither should be an error and `type` should work with all types. maybe this can be addressed as part of #123