Results 42 comments of sonatard

Thank you for opening your issue! I'll fix it.

If you need a quick fix, please use golangci-lint. Usage https://github.com/sonatard/noctx#noctx-with-golangci-lint Exec golangci-lint without test files. https://github.com/golangci/golangci-lint/blob/d287af010a7199b552ace8c6ab6ebcacf23b8cf4/.golangci.example.yml#L16

I understand your situation. Can you try again golangci-lint with following `.golangci.yml` ? ``` issues: exclude-rules: - path: _test\.go linters: - noctx ```

Here's my opinion: I think it would be better to proceed with applying the json v2 package before making it customizable. The reason is that the json v2 package introduces...

Backward compatibility is important, I was also a Google App Engine user, and it was truly amazing. (On a side note, I'm now using Cloud Run, and I love its...

When migrating to jsonv2, there are a few points to be aware of. In jsonv2, when marshaling a JSON null value into a non-pointer slice or map, it will result...

@daixiang0 Please merge this PR 👍

Our code is as follows. Since the key for retrieving urlData is different, we believe that using KMPNotifier results in the inability to retrieve urlData. ```kt override fun onMessageReceived(remoteMessage: RemoteMessage)...

I think it’s a good idea to allow packages other than the standard library to be passed as arguments to the noctx command. ``` noctx --functions="github.com/jmoiron/sqlx.Get,github.com/jmoiron/sqlx.NamedExec" ```

@ccoVeille Thank you. After merging the current PR, I'd like to bump the minor version in the next release—what do you think? Or, since this PR itself is just an...