.golangci.yaml 🔗
@@ -29,7 +29,6 @@ linters:
- errname
- errorlint
- exhaustive
- - exhaustruct
- exptostd
- fatcontext
- forbidigo
Amolith created
Assisted-by: Claude Sonnet 4 via Crush
.golangci.yaml | 1 -
lunatask.go | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)
@@ -29,7 +29,6 @@ linters:
- errname
- errorlint
- exhaustive
- - exhaustruct
- exptostd
- fatcontext
- forbidigo
@@ -173,7 +173,7 @@ func NewClient(accessToken string, opts ...Option) *Client {
client := &Client{
accessToken: accessToken,
baseURL: DefaultBaseURL,
- httpClient: &http.Client{}, //nolint:exhaustruct
+ httpClient: &http.Client{},
userAgent: "",
}
for _, opt := range opts {