Josh Burkart
Josh Burkart
Thanks for providing this! Unfortunately, I'm finding the extension nearly unusable with my team's repo, AFAICT, due to its automatic querying. I frequently have to wait for this when running...
Ah okay great. Thanks! Edit: In case it's useful to anyone, as a temporary workaround, I set the `bazel.executable` setting to a bogus path.
Every other formatter/linter I'm aware of (`clang-format`, `yapf`, `autopep8`, `pylint`, `clang-tidy`) provides a mechanism to ignore certain lines... I ended up on this ticket because I encountered a case where...
Thanks for the workaround! Seems preferable to not need to disable this particular fix for an entire project, though, so I still advocate for line- or file-specific disabling...
Awesome, totally worked. (Documented somewhere?) Guess I was misunderstanding the scope of this bug report. Thank you!
Ahh got it. I think info on how to disable a warning from within a BUILD file would be most appropriate to add to this section: https://github.com/bazelbuild/buildtools/blob/master/buildifier/README.md#linter And then make...
I tend to work around this by putting in fake comments: ```python a = ( # session.query(...) # .filter(...) # .filter(...) # ... ) ```
Sorry for the dumb question, but is there any sort of workaround available for computing the `std_dev`s of a cumulative sum efficiently/in linear time as the code currently stands? For...
@lebigot Thank you for the info! I actually looked into what I was doing a bit more and it seems that computing the standard deviations was slow due to how...
@Monadic-Cat Any chance you could provide an example? I'm unable to figure out how to convert your advice into code... Edit: `std::mem::transmute` was what I needed. Nevermind!