code_style: using avalonia's editorconfig and run dotnet format.

This commit is contained in:
leo 2024-03-31 16:54:29 +08:00
parent 3c38f681bd
commit d89a00e559
233 changed files with 1806 additions and 1254 deletions

View file

@ -23,7 +23,8 @@ namespace SourceGit.Models
get
{
var match = REG_VERSION_TAG().Match(TagName);
if (!match.Success) return false;
if (!match.Success)
return false;
var major = int.Parse(match.Groups[1].Value);
var minor = int.Parse(match.Groups[2].Value);
@ -34,4 +35,4 @@ namespace SourceGit.Models
}
public class AlreadyUpToDate { }
}
}