Enable all analyzers to default back to our rules

This commit is contained in:
Qstick
2023-02-18 12:17:33 -06:00
parent 27b3d8618a
commit a39341be4b
22 changed files with 34 additions and 25 deletions
@@ -131,7 +131,7 @@ namespace NzbDrone.Common.Extensions
public static string WrapInQuotes(this string text)
{
if (!text.Contains(" "))
if (!text.Contains(' '))
{
return text;
}
@@ -255,7 +255,7 @@ namespace NzbDrone.Common.Extensions
public static string ToUrlHost(this string input)
{
return input.Contains(":") ? $"[{input}]" : input;
return input.Contains(':') ? $"[{input}]" : input;
}
}
}