Skip to content

Commit

Permalink
Fix settings and configure formatOnSave for python files
Browse files Browse the repository at this point in the history
  • Loading branch information
clssn committed Mar 10, 2024
1 parent 980d2f1 commit 1f30335
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
{
"python.testing.pytestArgs": [
"-n 1"
"-n 1",
"tests",
"sys_tests",
],
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pytestEnabled": true
"python.testing.pytestEnabled": true,
"[python]": {
"diffEditor.ignoreTrimWhitespace": false,
"gitlens.codeLens.symbolScopes": [
"!Module"
],
"editor.formatOnSave": true,
"editor.wordBasedSuggestions": "off"
}
}

0 comments on commit 1f30335

Please sign in to comment.