chore: remove exhaustruct linter

Amolith created

Assisted-by: Claude Sonnet 4 via Crush

Change summary

.golangci.yaml | 1 -
lunatask.go    | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)

Detailed changes

.golangci.yaml 🔗

@@ -29,7 +29,6 @@ linters:
     - errname
     - errorlint
     - exhaustive
-    - exhaustruct
     - exptostd
     - fatcontext
     - forbidigo

lunatask.go 🔗

@@ -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 {