in src/PSRule.Rules.Azure/Configuration/ConfigurationOption.cs [76:90]
public bool Equals(ConfigurationOption other)
{
return other != null &&
Subscription == other.Subscription &&
ResourceGroup == other.ResourceGroup &&
Tenant == other.Tenant &&
ManagementGroup == other.ManagementGroup &&
ParameterDefaults == other.ParameterDefaults &&
Deployment == other.Deployment &&
Deployer == other.Deployer &&
PolicyIgnoreList == other.PolicyIgnoreList &&
PolicyRulePrefix == other.PolicyRulePrefix &&
BicepMinimumVersion == other.BicepMinimumVersion &&
BicepFileExpansionTimeout == other.BicepFileExpansionTimeout;
}