Skip to content

Commit 87b629e

Browse files
committed
Update VSCode settings: clean up excluded files and adjust pytest arguments
1 parent 9fd02e7 commit 87b629e

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.vscode/settings.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,9 @@
77
],
88
"files.exclude": {
99
"**/__pycache__": true,
10-
"**/.pytest_cache": true,
11-
"**/.hypothesis": true,
1210
"**/*.pyc": true,
1311
"**/*.pyo": true,
1412
"**/*.pyd": true,
15-
".venv": true
1613
},
1714
"files.trimFinalNewlines": true,
1815
"files.trimTrailingWhitespace": true,
@@ -21,13 +18,14 @@
2118
"python.testing.unittestEnabled": false,
2219
"python.testing.pytestEnabled": true,
2320
"python.testing.pytestPath": "pytest",
24-
"python.testing.pytestArgs": [
25-
"plotpy"
26-
],
21+
"python.testing.pytestArgs": [],
2722
"[python]": {
2823
"editor.defaultFormatter": "charliermarsh.ruff"
2924
},
3025
"editor.codeActionsOnSave": {
31-
"source.organizeImports": "explicit",
26+
"source.organizeImports.ruff": "explicit"
27+
},
28+
"[restructuredtext]": {
29+
"editor.wordWrap": "on"
3230
},
3331
}

0 commit comments

Comments
 (0)