You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/instructions/go-mod-standards.instructions.md
+20-3Lines changed: 20 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,24 @@
2
2
applyTo: '**/go.mod'
3
3
---
4
4
5
-
- go.mod should only have direct reference to modules within the azure-sdk-for-go (ie: github.com/Azure/azure-sdk-for-go/sdk/<modules>), standard library modules or modules that begin with `golang.org/x/`
6
-
- go.mod can have indirect dependencies to 3rd party modules, with the exception of:
5
+
go.mod should only have direct reference to:
6
+
- modules within the azure-sdk-for-go (ie: github.com/Azure/azure-sdk-for-go/sdk/<modules>)
7
+
- Go standard library modules or modules that begin with `golang.org/x/`
8
+
- 3rd party modules, but within this list:
7
9
- github.com/stretchr/testify
8
-
10
+
- github.com/joho/godotenv
11
+
- go.opentelemetry.io/otel/*
12
+
- github.com/golang/mock
13
+
14
+
azidentity can directly reference additional 3rd party modules:
0 commit comments