format with csharpier

This commit is contained in:
game4353 2024-05-29 18:07:19 +08:00
parent 77f06e7659
commit bf708665a7
2 changed files with 22 additions and 0 deletions

13
.config/dotnet-tools.json Normal file
View File

@ -0,0 +1,13 @@
{
"version": 1,
"isRoot": true,
"tools": {
"csharpier": {
"version": "0.28.2",
"commands": [
"dotnet-csharpier"
],
"rollForward": false
}
}
}

9
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,9 @@
{
"[csharp]": {
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.defaultFormatter": "csharpier.csharpier-vscode",
"editor.formatOnSave": true,
"editor.formatOnPaste": true
}
}