diff --git a/.github/workflows/draft.yml b/.github/workflows/draft.yml index 7046fe5..9d8dab6 100644 --- a/.github/workflows/draft.yml +++ b/.github/workflows/draft.yml @@ -1,4 +1,4 @@ -name: Publish +name: Draft on: push: branches: diff --git a/.gitignore b/.gitignore index 529862f..01e00ef 100644 --- a/.gitignore +++ b/.gitignore @@ -10,8 +10,14 @@ TestResults/ *.pyc dist/ .vs/ -.vscode/ #PDM .pdm.toml __pypackages__/ + +#VisualStudioCode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..eb0a85b --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,12 @@ +{ + "python.linting.enabled": true, + "python.linting.flake8Enabled": false, + "python.linting.pylintEnabled": true, + "python.testing.pytestArgs": [ + "tests" + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true, + "python.autoComplete.extraPaths": ["__pypackages__//lib"], + "python.analysis.extraPaths": ["__pypackages__//lib"] +} \ No newline at end of file