Logan Hunt

Results 84 comments of Logan Hunt

This is an issue with how Mypy resolves package names internally, though I have no idea why it is causing issues here. I am having troubles reproducing this reliably on...

Thanks @jgillard , I forgot to document this. This feature should be good to go, you just need to relocate your settings to `[tool.typos.xyz]` instead of `[xyz]`.

If you happen to use [bash-completion](https://github.com/scop/bash-completion), `isort` support is already built in (souce file [here](https://github.com/scop/bash-completion/blob/master/completions/isort)). I don't know what auto-complete programs exist for other shells like zsh or fish, but...

Good catch! Perhaps we should only apply this to built-in exceptions? Of course someone could do: ```python Exception = lambda: __builtins__.Exception() raise Exception() # ok raise Exception # not ok...

Hi @Goldziher, https://github.com/python/mypy/pull/13953 has been merged, and progress is well underway to get Refurb compiling with Mypy! There are some additional roadblocks which will need to be resolved, but for...

I completely understand removing Refurb for the time being, it is a bit slower then I would like. For the time being I will look into ways to speed things...

Thank you @Avasam for bringing these up! Your second comment deserves it's own issue/PR, since the docs should mention that it is slower then using `try`/`except`. I'll go ahead and...

Closed via #277. Sorry for the delay on this!

Hi, creator of Refurb here! I've added a bunch of checks since this issue was opened, so I would like to give an updated list of what's new. I also...

Hi all! Here's an updated list of some of the new and/or improved checks added to Refurb recently: ## New (or not yet listed) checks - [ ] [`FURB178`](https://github.com/dosisod/refurb/blob/master/refurb/checks/shlex/use_join.py) `use-shlex-join`:...