Peter Tri Ho

Results 32 comments of Peter Tri Ho

https://docs.github.com/en/actions/reference/events-that-trigger-workflows#release Could do something like: - build on tag event for people to test - rebuild + publish on release event

I never had this issue but I've since moved to just running [rustywind](https://github.com/avencera/rustywind) manually Do you guys have auto save + run on save turned on?

Try ```python link = await await queue.get() yield { "newLink": link } ```

@praveenperera Awesome! Yep I am. My discord is trihonometry#4469

Sorry this took so long, added!

@Alex-vZyl Will be a while before I have a chance to fix this. Requires a large refactor with the implementation to fix this. A workaround is to set `show_in_active_only =...

@CallumHoward Refactor of the main codebase is in the works, I'll try to add independent search based off this when I have the chance

local dotenv_linter = { lintCommand = "dotenv-linter" lintFormats = {"%f:%l %m"} } I have the same config and it works fine for me. I do have a autocommand to set...

Still need to add suggestion above (members)

This should work ```js convict.addFormat({ name: "comma-separated-string", validate: function (val) { const emptyStringRegex = /^$/; const commaSeparatedStringRegex = /^[\w\d]+(,[\w\d]+)*$/; if (!emptyStringRegex.test(val) && !commaSeparatedStringRegex.test(val)) { throw new Error("must be a comma...