Skip to content

Commit

Permalink
fix setting black formatter as deafult for python
Browse files Browse the repository at this point in the history
  • Loading branch information
hollandjg committed Oct 10, 2024
1 parent b282737 commit a0c6135
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"editor.defaultFormatter": "ms-python.black-formatter",
"black-formatter.importStrategy": "fromEnvironment",
"editor.formatOnSave": true,
"black-formatter.importStrategy": "fromEnvironment",
"python.testing.pytestArgs": [
"."
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
"python.testing.pytestEnabled": true,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
}
}

0 comments on commit a0c6135

Please sign in to comment.