chore: add .editorconfig and pinned CSharpier tool manifest

Mirrors CSharpier conventions (4-space indent, Allman braces,
System-first usings, 100-col wraps) so IDE auto-format and
'dotnet format' agree with the canonical formatter.
Usage: dotnet tool restore && dotnet csharpier format .
This commit is contained in:
aj
2026-09-20 16:04:04 -04:00
parent 589d341455
commit 8e6fa677fb
4 changed files with 246 additions and 43 deletions
+13
View File
@@ -0,0 +1,13 @@
{
"version": 1,
"isRoot": true,
"tools": {
"csharpier": {
"version": "1.3.0",
"commands": [
"csharpier"
],
"rollForward": false
}
}
}