DetachHead

Results 929 comments of DetachHead

no it's just to make sure the baseline is always up to date. something like this would be good for CI i think

soz i assumed it was the defaults causing it ```toml [tool.mypy] check_untyped_defs = false ```

> Are you proposing to use the [`core.autocrlf`](https://git-scm.com/docs/git-config#Documentation/git-config.txt-coreautocrlf) and [`core.eol`](https://git-scm.com/docs/git-config#Documentation/git-config.txt-coreeol) git config settings to decide which line ending to use in the baseline.json file? Is this just for when creating...

i think this should only be allowed when there's an overload that doesn't include that parameter, otherwise it seems like a more confusing version of the already deprecated `implicit_optional` ```py...

how is it not an `Any` expression? ```py def foo(l: list[Any]): l[0].capitalize() # runtime error foo([1, 2, 3]) ``` isn't the point of the any expression error to prevent you...

I think both should be errors Is the first one not an error because of those mypy issues you found where the any errors don't appear?

what about its return type? besides i think it's sus to call untyped functions regardless of if you are actually providing any of the parameters, imo it should still show...

it wwould also be useful if the error provided some information as to what's causing it