Skip to content

Commit

Permalink
update vscode setting
Browse files Browse the repository at this point in the history
  • Loading branch information
Naphann committed Jul 26, 2024
1 parent 6b33780 commit 014ba0f
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
"sourceFileMap": "${sourceFileMapObj}",
"externalConsole": false
},
"python.formatting.provider": "black",
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [
"--doctest-modules",
Expand All @@ -51,5 +50,21 @@
"--ignore=scripts",
"--ignore=spdlog"
],
"debug.allowBreakpointsEverywhere": true
"debug.allowBreakpointsEverywhere": true,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
},
},
"isort.args": [
"--profile",
"black"
],
"flake8.args": [
"--max-line-length=140"
],
"python.analysis.typeCheckingMode": "basic"
}

0 comments on commit 014ba0f

Please sign in to comment.