불필요 파일 삭제

This commit is contained in:
ByeonJungHun
2024-02-19 16:06:11 +09:00
parent 360c6eef4a
commit 2e29d65b99
4342 changed files with 484 additions and 1487 deletions

View File

@@ -0,0 +1,6 @@
{
"recommendations": [
"ms-python.python",
"ms-vscode.powershell",
]
}

View File

@@ -0,0 +1,30 @@
{
"python.testing.pytestArgs": [
"tests/unit",
"-vv"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.analysis.extraPaths": [
"${workspaceFolder}/../../../",
],
"powershell.codeFormatting.addWhitespaceAroundPipe": true,
"powershell.codeFormatting.alignPropertyValuePairs": false,
"powershell.codeFormatting.autoCorrectAliases": true,
"powershell.codeFormatting.ignoreOneLineBlock": true,
"powershell.codeFormatting.newLineAfterCloseBrace": true,
"powershell.codeFormatting.newLineAfterOpenBrace": true,
"powershell.codeFormatting.openBraceOnSameLine": true,
"powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationForFirstPipeline",
"powershell.codeFormatting.whitespaceAfterSeparator": true,
"powershell.codeFormatting.whitespaceAroundOperator": true,
"powershell.codeFormatting.whitespaceBeforeOpenBrace": true,
"powershell.codeFormatting.whitespaceBeforeOpenParen": true,
"powershell.codeFormatting.whitespaceBetweenParameters": true,
"powershell.codeFormatting.whitespaceInsideBrace": true,
"powershell.scriptAnalysis.enable": true,
"[powershell]": {
"editor.formatOnSave": true,
},
}