Adam Azarchs

Results 106 comments of Adam Azarchs

Maybe we'll have bandwidth to open-source our rule set at some point, but in the mean time, this is really not that hard. You can use a macro with [`write_file`](https://github.com/bazelbuild/bazel-skylib/blob/main/docs/write_file_doc.md)...

Ours also runs `pyflakes` and `pylint`, and also imports the module as a basic sanity check of the dependency declarations. Maybe a bit much to dump into a single test...

The idea with a refresh token is you can have the primary token with a very short expiration (e.g. 1 hour) without the inconvenience of needing to constantly re-enter your...

Anything that requires opening a web browser is inconvenient if you're working remotely, e.g. over `ssh`[^1]. But all of this is beside the point, which is that right now the...

Refresh tokens exfiltrated from a developer machine would be a problem until such time as the developer tried to log in with their copy of the refresh token and found...

Related: https://github.com/actions-rs/toolchain/issues/216

It's really quite unfortunate, because unlike `actions-rs/toolchain`, which doesn't do all that much that can't be done with `run: rustup install`, this provides significant additional value compared to what can...

I've merged this PR into the https://github.com/10XGenomics/clippy-check fork, which is itself a fork off of https://github.com/actions-rs-plus/clippy-check (we're pretty heavy users of clippy-check internally, and we have a few monorepos where...

As they've said elsewhere, they are not comfortable with adding strangers as additional maintainers for a project with this much usage. And they're right, unfortunately. There have been too many...

If it helps, I have a `BUILD` file to build `zstd` from source that we use extensively in our rule set, which I could contribute here. No promisses about how...