sourcegraph/lib
Varun Gandhi 17a0a6461c
chore: Remove redundant loop captures (#62264)
Go 1.22 changes loop variables to have more sensible
semantics where the variable is not reused across iterations
by the codegen, so we can simplify a bunch of code
working around that counterintuitive behavior.
2024-04-30 07:57:21 -06:00
..
api enterprise: Move last directory out (#57392) 2023-10-05 20:15:40 +00:00
background Replace all traditional for-loops (#60988) 2024-03-11 16:05:47 +02:00
batches chore: Remove redundant loop captures (#62264) 2024-04-30 07:57:21 -06:00
cliutil sg: improve positional completions (#58569) 2023-11-27 16:30:59 -08:00
codeintel chore: Use min/max builtins over math.Max/math.Min (#62233) 2024-04-29 14:27:28 -04:00
errors telemetry-gateway: wrap publish errors in error details for Sentry (#61895) 2024-04-15 23:19:29 +00:00
gitservice Replace all traditional for-loops (#60988) 2024-03-11 16:05:47 +02:00
iterator ci: re-enable race detection (#52776) 2023-06-05 20:41:47 +02:00
managedservicesplatform lib/telemetrygateway: publish all non-Sourcegraph-specific Telemetry Gateway bindings (#62061) 2024-04-22 14:36:46 -07:00
output sg/msp: filter generated environments by category (#62131) 2024-04-24 09:44:16 -07:00
pointers msp: add monitoring stack (#58816) 2023-12-13 19:40:57 +00:00
process vcssyncer: Move clone implementation details into syncer (#57688) 2023-10-27 20:55:59 +02:00
servicecatalog Remove GitHub proxy service (#56485) 2023-09-14 19:43:40 +02:00
telemetrygateway telemetry/resolvers, internal/telemetry, telemetry-gateway: validate feature/action (#62214) 2024-04-29 19:34:50 +00:00
go.mod lib/telemetrygateway: publish all non-Sourcegraph-specific Telemetry Gateway bindings (#62061) 2024-04-22 14:36:46 -07:00
go.sum lib/telemetrygateway: publish all non-Sourcegraph-specific Telemetry Gateway bindings (#62061) 2024-04-22 14:36:46 -07:00
README.md lib: Introduce non-enterprise lib directory (#18992) 2021-03-10 19:41:33 -06:00
tools.go bump to Go 1.22.1 (#60902) 2024-03-06 17:38:43 -07: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.