aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/daixiang0
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2024-04-02 14:37:40 +0000
committerTaras Madan <tarasmadan@google.com>2024-04-03 09:59:40 +0000
commit9d2a90af8850a414d2da20b806d7aa8fd9a297ae (patch)
treeb6ce5a1bc2ecaed9f94b06b36eca20b98929970c /vendor/github.com/daixiang0
parentb90978ba49e3321a2d1cd77c07c196b088c97386 (diff)
mod: bump github.com/golangci/golangci-lint from 1.56.2 to 1.57.2
Bumps [github.com/golangci/golangci-lint](https://github.com/golangci/golangci-lint) from 1.56.2 to 1.57.2. - [Release notes](https://github.com/golangci/golangci-lint/releases) - [Changelog](https://github.com/golangci/golangci-lint/blob/master/CHANGELOG.md) - [Commits](https://github.com/golangci/golangci-lint/compare/v1.56.2...v1.57.2) --- updated-dependencies: - dependency-name: github.com/golangci/golangci-lint dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'vendor/github.com/daixiang0')
-rw-r--r--vendor/github.com/daixiang0/gci/pkg/gci/testdata.go20
-rw-r--r--vendor/github.com/daixiang0/gci/pkg/parse/parse.go3
-rw-r--r--vendor/github.com/daixiang0/gci/pkg/section/standard_list.go4
3 files changed, 26 insertions, 1 deletions
diff --git a/vendor/github.com/daixiang0/gci/pkg/gci/testdata.go b/vendor/github.com/daixiang0/gci/pkg/gci/testdata.go
index 77c06dc63..4f60e8806 100644
--- a/vendor/github.com/daixiang0/gci/pkg/gci/testdata.go
+++ b/vendor/github.com/daixiang0/gci/pkg/gci/testdata.go
@@ -1275,4 +1275,24 @@ import (
)
`,
},
+ {
+ "no-trailing-newline",
+
+ `sections:
+ - Standard
+`,
+ `package main
+
+import (
+ "net"
+ "fmt"
+)`,
+ `package main
+
+import (
+ "fmt"
+ "net"
+)
+`,
+ },
}
diff --git a/vendor/github.com/daixiang0/gci/pkg/parse/parse.go b/vendor/github.com/daixiang0/gci/pkg/parse/parse.go
index 33d6e1705..e8532f850 100644
--- a/vendor/github.com/daixiang0/gci/pkg/parse/parse.go
+++ b/vendor/github.com/daixiang0/gci/pkg/parse/parse.go
@@ -111,6 +111,9 @@ func ParseFile(src []byte, filename string) (ImportList, int, int, int, int, err
headEnd = int(decl.Pos()) - 1
}
tailStart = int(decl.End())
+ if tailStart > len(src) {
+ tailStart = len(src)
+ }
for _, spec := range genDecl.Specs {
imp := spec.(*ast.ImportSpec)
diff --git a/vendor/github.com/daixiang0/gci/pkg/section/standard_list.go b/vendor/github.com/daixiang0/gci/pkg/section/standard_list.go
index 05e799939..551bba428 100644
--- a/vendor/github.com/daixiang0/gci/pkg/section/standard_list.go
+++ b/vendor/github.com/daixiang0/gci/pkg/section/standard_list.go
@@ -1,6 +1,6 @@
package section
-// Code generated based on go1.21.0 X:arenas. DO NOT EDIT.
+// Code generated based on go1.22.0 X:arenas. DO NOT EDIT.
var standardPackages = map[string]struct{}{
"archive/tar": {},
@@ -78,6 +78,7 @@ var standardPackages = map[string]struct{}{
"go/scanner": {},
"go/token": {},
"go/types": {},
+ "go/version": {},
"hash": {},
"hash/adler32": {},
"hash/crc32": {},
@@ -106,6 +107,7 @@ var standardPackages = map[string]struct{}{
"math/bits": {},
"math/cmplx": {},
"math/rand": {},
+ "math/rand/v2": {},
"mime": {},
"mime/multipart": {},
"mime/quotedprintable": {},