X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=.config%2Fcoc%2Fextensions%2Fcoc-go-data%2Ftools%2Fpkg%2Fmod%2Fgolang.org%2Fx%2Ftools%2Fgopls%40v0.5.2%2Finternal%2Fhooks%2Fanalysis.go;fp=.config%2Fcoc%2Fextensions%2Fcoc-go-data%2Ftools%2Fpkg%2Fmod%2Fgolang.org%2Fx%2Ftools%2Fgopls%40v0.5.2%2Finternal%2Fhooks%2Fanalysis.go;h=0000000000000000000000000000000000000000;hb=3ddadb3c98564791f0ac36cb39771d844a63dc91;hp=1ee15573e9fdaab7539c7fadd5948d62808f453e;hpb=5f797af6612ed10887189b47a1efc2f915586e59;p=dotfiles%2F.git diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools/gopls@v0.5.2/internal/hooks/analysis.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools/gopls@v0.5.2/internal/hooks/analysis.go deleted file mode 100644 index 1ee15573..00000000 --- a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools/gopls@v0.5.2/internal/hooks/analysis.go +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright 2019 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package hooks - -import ( - "golang.org/x/tools/go/analysis" - "golang.org/x/tools/internal/lsp/source" - "honnef.co/go/tools/simple" - "honnef.co/go/tools/staticcheck" - "honnef.co/go/tools/stylecheck" -) - -func updateAnalyzers(options *source.Options) { - var analyzers []*analysis.Analyzer - for _, a := range simple.Analyzers { - analyzers = append(analyzers, a) - } - for _, a := range staticcheck.Analyzers { - switch a.Name { - case "SA5009": - // This check conflicts with the vet printf check (golang/go#34494). - case "SA5011": - // This check relies on facts from dependencies, which - // we don't currently compute. - default: - analyzers = append(analyzers, a) - } - } - for _, a := range stylecheck.Analyzers { - analyzers = append(analyzers, a) - } - // Always add hooks for all available analyzers, but disable them if the - // user does not have staticcheck enabled (they may enable it later on). - for _, a := range analyzers { - options.AddStaticcheckAnalyzer(a) - } -}