Skip to content

Commit

Permalink
Merge pull request #80 from RomanoLab/wip/issue-62/beautify-code
Browse files Browse the repository at this point in the history
style: Change settings to apply Python isort
  • Loading branch information
yunchae-kim authored Sep 27, 2023
2 parents e0c668f + 4642e13 commit adace4d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,12 @@
// Python formatter: PEP8
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "ms-python.autopep8"
"editor.defaultFormatter": "ms-python.autopep8",
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"isort.args": ["--profile", "black"],

// Python testing: PyTest
"python.testing.pytestArgs": ["tests"],
Expand Down

0 comments on commit adace4d

Please sign in to comment.