···6161• repo.readme: readme files to look for.
6262• repo.mainBranch: main branch names to look for.
6363• repo.ignore: repos to ignore, relative to scanPath.
6464+• repo.unlisted: repos to hide, relative to scanPath.
6465• server.name: used for go-import meta tags and clone URLs.
65666667
···3030 return
3131}
32323333+func (d *deps) isUnlisted(name string) bool {
3434+ for _, i := range d.c.Repo.Unlisted {
3535+ if name == i {
3636+ return true
3737+ }
3838+ }
3939+4040+ return false
4141+}
4242+3343func (d *deps) isIgnored(name string) bool {
3444 for _, i := range d.c.Repo.Ignore {
3545 if name == i {