Anthony Sottile
Anthony Sottile
yep no problem -- don't feel obligated
indeed, this bit currently assumes ssh urls: https://github.com/asottile/all-repos/blob/f7622444c746175af094214932725e642713e7b5/all_repos/push/github_pull_request.py#L20 Can an automated push happen over non-ssh protocols? 🤔
Currently there is not, wouldn't be too difficult to add though: https://github.com/asottile/all-repos/blob/252fe6f5488df3482a68d6d41e842ea868eb4603/all_repos/autofix_lib.py#L234 probably something like: ```python while True: try: check_fix() except Exception: if settings.interactive: if not _interactive_check(use_color=autofix_settings.color): return else: continue...
it should probably just reject these files -- similar to what it does for non-UTF-8 files
here's where the other errors are checked: https://github.com/asottile/babi/blob/511de750e9c85d5fa037ba8158dc1043fc1368b1/babi/file.py#L67-L75
^-right from beginning of the line goes to the wrong place when the line is indented with a tab -- it should go to the same position as if the...
do you have an actual tab character?
try these two (press ^Right after opening either of them) ``` babi +2 -
yeah see how they are not the same?
going to assume you're new to software development -- usually the response to "No such file or directory: X" should be to figure out why you don't have X the...