blob: 4ac32f35c66fc44548d9fc1f6b1057c4723b1f98 [file] [log] [blame]
Robert Findleyec044b12022-10-31 16:25:47 -04001// Copyright 2021 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Hana (Hyang-Ah) Kimef396af2023-02-28 23:17:14 -05005//go:build !go1.19
6// +build !go1.19
Robert Findleyec044b12022-10-31 16:25:47 -04007
8package hooks
9
Rob Findley42d97792023-11-17 17:45:31 -050010import "golang.org/x/tools/gopls/internal/settings"
Robert Findleyec044b12022-10-31 16:25:47 -040011
Rob Findley42d97792023-11-17 17:45:31 -050012func updateAnalyzers(options *settings.Options) {
Robert Findleyec044b12022-10-31 16:25:47 -040013 options.StaticcheckSupported = false
14}