Olivier Mengué

Results 257 issues of Olivier Mengué

In the feature list in README, add a line to mention that this project has different licensing terms (in particular doesn't contain Apache 2.0 licensed code)

feature request

`sighupHandler` is enabled by default. So we can't use `SIGHUP` for something else or we can't disable it if we don't want the magic update behaviour. This feature should be...

Spec in progress (draft 07 already expired): https://json-schema.org/draft-07/relative-json-pointer.html

Implement `Get()` traversing into struct{} as [requested](https://twitter.com/lestrrat/status/853989894993072128) by @lestrrat: - if the type implements `json.Marshaler`, call `MarshalJSON`, convert result to `json.RawMessage` and then browse into that (requires #2) - else...

enhancement

### Checklist - [ ] I am able to reproduce the bug with the latest version given here: [CLICK THIS LINK](https://github.com/TeamNewPipe/NewPipe/releases/latest). - [X] I made sure that there are *no...

bug
template ignored
waiting for author
needs triage

`-V` doesn't work. `nilaway` expects `-V=full` but this is not what is documented in online help. ```console $ nilaway 2>&1 | head nilaway: Run NilAway on this package to report...

documentation

About YAML 1.2 anchor & aliases: http://www.yaml.org/spec/1.2/spec.html#id2765878 This YAML specific feature could be used instead of `$merge` or `$inline` for some uses cases. We should document the similarities and differences.

The signature for [`assert.Regexp`](https://pkg.go.dev/github.com/stretchr/testify/assert#Regexp) (and associated methods) is: ```go func Regexp(t TestingT, rx interface{}, str interface{}, msgAndArgs ...interface{}) bool ``` However `rx` should only be `*regexp.Regexp` or `string`. Related: stretchr/testify#1585...

enhancement

Most `assert` functions have an `msgAndArgs` arguments variadic list. Its expansion is handled by the internal [`messageFromMsgAndArgs`](https://github.com/stretchr/testify/blob/db8608ed63f5bd9abdd03f669f5bb80569c114b6/assert/assertions.go#L262) function. Some cases of a call to `fmt.Sprintf` as the value for `msgAndArgs`...

enhancement

Use tools from package [testing/iotest](https://golang.org/pkg/testing/iotest/) to write more tests. First milestone: 100% coverage.