arm-feature-file-usage-discourage
@azure-tools/typespec-azure-resource-manager/arm-feature-file-usage-discourageAvoid using the @featureFiles decorator. Its usage should be limited to brownfield services migration and requires explicit approval.
โ Incorrect
Section titled โโ Incorrectโ@armProviderNamespace@Azure.ResourceManager.featureFiles(Features)namespace Microsoft.Contoso;
enum Features { FeatureA: "Feature A",}โ Correct
Section titled โโ CorrectโDo not use the @featureFiles decorator unless you have explicit approval for brownfield migration:
#suppress "@azure-tools/typespec-azure-resource-manager/arm-feature-file-usage-discourage" "Approved for brownfield migration."@armProviderNamespace@Azure.ResourceManager.featureFiles(Features)namespace Microsoft.Contoso;
enum Features { FeatureA: "Feature A",}