Add csharpier as a code formatter

This commit is contained in:
Zoe Roux
2023-12-07 18:07:07 +01:00
parent baa78b9417
commit 7e6e56a366
101 changed files with 3113 additions and 1982 deletions
@@ -40,9 +40,12 @@ namespace Kyoo.Authentication.Models
get
{
return Enum.GetNames<Group>()
.SelectMany(group => Enum.GetNames<Kind>()
.Select(kind => $"{group}.{kind}".ToLowerInvariant())
).ToArray();
.SelectMany(
group =>
Enum.GetNames<Kind>()
.Select(kind => $"{group}.{kind}".ToLowerInvariant())
)
.ToArray();
}
}