Nicholas Grisafi

Results 10 comments of Nicholas Grisafi

+1 to this, it would be a great feature to have!

This feature would be great!

Any updates on this feature?

It doesn't offer the desired effect. On git hooks we want to apply all fixes and formatting but have a non-zero exit code. This is so the developer can include...

> For my use of something similar, the desired workflow is: > > 1. write some badly formatted code & forget to format > 2. `git push`... > 3. `.git/hooks/pre-push`...

> `lint` should exit non-zero, if I understand correctly. Why would you need it to actually apply the fixes and formatting on files that immediately get thrown away when the...

> Or go the rpmfusion option. Can you provide the best way to do this? I followed the kernel open guide here https://rpmfusion.org/Howto/NVIDIA#Kernel_Open but having issues finding the repository.

+1 seeing most performance hits come from deeply nested dictionaries.

Also we should support uv sources ```toml [project] name = "something" requires-python = ">=3.11.0,

Adding a return annotation makes mypy behave the way we expect ```python from typing import Any def dynamic_type(x) -> type[Any]: return type("some_type", () , x) ```