Noel Yap
Noel Yap
**Is your feature request related to a problem? Please describe.** There are times when I have a `.envrc` file in a directory but I don't want `direnv` to process it...
**Describe the bug** `PS2` is `export`ed in a parent shell. When a directory with `.envrc` is entered and `direnv` is triggered, `PS2` becomes unset. **To Reproduce** `export PS2=' '` `cd...
Given: ``` type Example interface { Example(_ int) int } ``` Mockery will generate: ``` func (_m *Example) Example(_ int) int { ... } ``` If the `_` is left...
### Description `example/v1/example.proto` exists in the directory `go/src/example.com/examples/microservice-grpc/server/apimodels/grpc`. `go/src/example.com/examples/microservice-grpc/server/apimodels/grpc` has: ``` buf_proto_lint_test( name = "proto_lint", protos = ["//go/src/example.com/examples/microservice-grpc/server/apimodels/grpc/example/v1:proto_library"], use_rules = [ "DEFAULT", "COMMENTS", ], ) ``` `bazel test proto_lint` fails...
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] When step expressions and...
…to directory hierarchy. Why: To allow greater flexibility in source code organization.
My protos are defined in a directory `src/main/proto`. I've placed the `protop.json` file in the same directory. https://github.com/noel-yap/setter-for-catan-sb/blob/use-protop/src/main/proto/protop.json In a client project, I've created `protop.json` as: ``` { "organization" :...
``` $ ./install.sh ---------------- protop installer ---------------- [protop] `gradle clean` Downloading https://services.gradle.org/distributions/gradle-6.2.2-bin.zip ............................................................................................. FAILURE: Build failed with an exception. * What went wrong: Could not open cp_init remapped class cache...
``` func TestMaxRetries(t *testing.T) { retryImmediately := retry.Backoff(0, 0, 0) type testArgs struct { retryPolicy retry.Policy fn func(*int) error } testCases := []struct { testName string args testArgs expected int...