in src/PSRule/Configuration/PSRuleOption.cs [374:388]
public bool Equals(PSRuleOption other)
{
return other != null &&
Binding == other.Binding &&
Configuration == other.Configuration &&
Convention == other.Convention &&
Execution == other.Execution &&
Include == other.Include &&
Input == other.Input &&
Logging == other.Logging &&
Output == other.Output &&
Suppression == other.Suppression &&
Pipeline == other.Pipeline &&
Rule == other.Rule;
}