sourcegraph/lib
Camden Cheek 4f5913028b
Enable exportloopref lint (#31951)
This enables the exportloopref lint, which checks for the footgun of capturing a reference to
the a loop variable.
2022-02-28 12:46:17 -07:00
..
batches Enable exportloopref lint (#31951) 2022-02-28 12:46:17 -07:00
codeintel golangci-lint: enable unparam linter (#31856) 2022-02-28 15:31:44 +01:00
errors lib/errors: new MultiError error type and utilities (#31466) 2022-02-18 11:07:02 -08:00
gitservice golangci-lint: enable unparam linter (#31856) 2022-02-28 15:31:44 +01:00
output sg: Add first integration tests for sg start (#31545) 2022-02-21 13:36:13 +00:00
process Restore buffered process.PipeOutput and add tests (#31478) 2022-02-18 15:37:04 +01:00
go.mod lib/errors: new MultiError error type and utilities (#31466) 2022-02-18 11:07:02 -08:00
go.sum lib/errors: new MultiError error type and utilities (#31466) 2022-02-18 11:07:02 -08:00
README.md lib: Introduce non-enterprise lib directory (#18992) 2021-03-10 19:41:33 -06:00
tools.go build with go 1.17 (#24566) 2021-09-03 14:46:55 +00:00

Sourcegraph lib module

This directory is the root of a separate go module from the primary module rooted at sourcegraph/sourcegraph. This module exists to hold code that we want to reuse outside of the sourcegraph/sourcegraph repo.

Code in this module should not import from sourcegraph/sourcegraph or from other Sourcegraph repositories to avoid complicated dependency relationships. Instead consider moving code from elsewhere into this module.