style: add .editorconfig for code formatting. see issu #25

This commit is contained in:
leo 2024-03-18 09:37:06 +08:00
parent a8eeea4f78
commit 18aaa0a143
225 changed files with 7781 additions and 3911 deletions

View file

@ -1,27 +1,33 @@
using System.Collections.Generic;
using System.Text.RegularExpressions;
namespace SourceGit.Commands {
public partial class QueryRemotes : Command {
namespace SourceGit.Commands
{
public partial class QueryRemotes : Command
{
[GeneratedRegex(@"^([\w\.\-]+)\s*(\S+).*$")]
private static partial Regex REG_REMOTE();
public QueryRemotes(string repo) {
public QueryRemotes(string repo)
{
WorkingDirectory = repo;
Context = repo;
Args = "remote -v";
}
public List<Models.Remote> Result() {
public List<Models.Remote> Result()
{
Exec();
return _loaded;
}
protected override void OnReadline(string line) {
protected override void OnReadline(string line)
{
var match = REG_REMOTE().Match(line);
if (!match.Success) return;
var remote = new Models.Remote() {
var remote = new Models.Remote()
{
Name = match.Groups[1].Value,
URL = match.Groups[2].Value,
};
@ -30,6 +36,6 @@ namespace SourceGit.Commands {
_loaded.Add(remote);
}
private List<Models.Remote> _loaded = new List<Models.Remote>();
private readonly List<Models.Remote> _loaded = new List<Models.Remote>();
}
}
}