Projects STRLCPY syft Commits 7d1b292a
🤬
  • ■ ■ ■ ■
    .golangci.yaml
    skipped 11 lines
    12 12   enable:
    13 13   - asciicheck
    14 14   - bodyclose
    15  - - depguard
    16 15   - dogsled
    17 16   - dupl
    18 17   - errcheck
    skipped 38 lines
    57 56   
    58 57  # do not enable...
    59 58  # - deadcode # The owner seems to have abandoned the linter. Replaced by "unused".
     59 +# - depguard # We don't have a configuration for this yet
    60 60  # - goprintffuncname # does not catch all cases and there are exceptions
    61 61  # - nakedret # does not catch all cases and should not fail a build
    62 62  # - gochecknoglobals
    skipped 21 lines
  • ■ ■ ■ ■
    Makefile
    skipped 9 lines
    10 10  GLOW_CMD = $(TEMP_DIR)/glow
    11 11   
    12 12  # Tool versions #################################
    13  -GOLANGCILINT_VERSION := v1.52.2
     13 +GOLANGCILINT_VERSION := v1.53.2
    14 14  GOSIMPORTS_VERSION := v0.3.8
    15 15  BOUNCER_VERSION := v0.4.0
    16 16  CHRONICLE_VERSION := v0.6.0
    skipped 380 lines
  • ■ ■ ■ ■
    syft/internal/fileresolver/unindexed_directory.go
    skipped 373 lines
    374 374   abs := f.u.absPath(resolved)
    375 375   fi, _, err = f.u.ls.LstatIfPossible(abs)
    376 376   if err != nil {
    377  - return
     377 + return resolved, fi, err
    378 378   }
    379 379   for f.u.isSymlink(fi) {
    380 380   if slices.Contains(visited, resolved) {
    skipped 163 lines
Please wait...
Page is in error, reload to recover