Trevor Gross
Trevor Gross
@firasdib How do the other implementations work? I'd assume there's less of a size restriction if you don't have to serve the binaries. Assuming it is just something like a...
I can probably add some context here (in addition to an upvote for the feature request). [From the grep man page:](https://linuxcommand.org/lc3_man_pages/grep1.html) > grep understands three different versions of regular expression...
I wasted my time putting a good comment in #1230 before I saw this issue. So I'll just copy it to here: > I can probably add some context here...
@mgkuhn thank you for the response, I will drop a quick mention to #6493 as well. An API related to what you suggest sounds very viable. Off the top of...
Do you have the correct username in your connection settings by any chance? This threw me off. Also double check your authentication method is "Public Key" and the private key...
Thought it was something in my script that was causing it but just verified that's not the case. Kind of unfortunate for CI, wonder if there's a workaround.
Ah, it's in the hook itself, the hook runs a docker image https://github.com/koalaman/shellcheck-precommit/blob/b979aa8fc9156ea252c3e51cd694a7e157354ea0/.pre-commit-hooks.yaml#L4
It actually looks like there's a repo that ships python wheels of shellcheck, and has its own precommit hook https://github.com/shellcheck-py/shellcheck-py so I guess that one is better to use since...
I went ahead and figured out some of the needed logic. The following works: ```python class UserModel(MarshModel): __meta_args__ = {"unknown": INCLUDE} name: str = fields.Str() email: str = fields.Email() created_at:...
Let me generalize this a bit: the main goal is to have the return type of .load() be something that can be statically type checked, which helps with IDEs (autocomplete...