Skip to content

Commit 03c745e

Browse files
authored
.gitignore and Workflow Upkeep (#16)
1 parent ff50d51 commit 03c745e

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

.github/workflows/draft.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publish
1+
name: Draft
22
on:
33
push:
44
branches:

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,14 @@ TestResults/
1010
*.pyc
1111
dist/
1212
.vs/
13-
.vscode/
1413

1514
#PDM
1615
.pdm.toml
1716
__pypackages__/
17+
18+
#VisualStudioCode
19+
.vscode/*
20+
!.vscode/settings.json
21+
!.vscode/tasks.json
22+
!.vscode/launch.json
23+
!.vscode/extensions.json

.vscode/settings.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"python.linting.enabled": true,
3+
"python.linting.flake8Enabled": false,
4+
"python.linting.pylintEnabled": true,
5+
"python.testing.pytestArgs": [
6+
"tests"
7+
],
8+
"python.testing.unittestEnabled": false,
9+
"python.testing.pytestEnabled": true,
10+
"python.autoComplete.extraPaths": ["__pypackages__/<major.minor>/lib"],
11+
"python.analysis.extraPaths": ["__pypackages__/<major.minor>/lib"]
12+
}

0 commit comments

Comments
 (0)