initial commit

This commit is contained in:
Peter Krauß
2022-09-26 10:18:20 +02:00
commit 236b47dc84
19 changed files with 1435 additions and 0 deletions

26
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,26 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "autoflake",
"type": "process",
"command": "poetry",
"args": [
"run",
"autoflake",
"-i",
"--remove-all-unused-imports",
"--remove-unused-variables",
"${file}"
],
"presentation": {
"reveal": "silent",
"panel": "shared",
"showReuseMessage": false
},
"problemMatcher": []
}
]
}