no-private-usage
@azure-tools/typespec-azure-core/no-private-usageVerify that a spec is not referencing items from another library using a private namespace.
β Incorrect
Section titled ββ Incorrectβ@Azure.Core.Foundations.Private.embeddingVector(string)model Foo {}Using items from a private namespace within the same library is allowed.
namespace MyService;
@MyService.Private.myPrivateDecoratormodel Foo {}
namespace Private { extern dec myPrivateDecorator(target);}