Skip to content

Commit

Permalink
Add vscode Python settings
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanElsner committed Nov 17, 2023
1 parent a80cc9b commit 17fd026
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"editor.tabSize": 2,

"pylint.args": [
"--rcfile=.pylintrc"
],

"yapf.args": [
"--style",
"{based_on_style: google, indent_width: 2}"
],

"[python]": {
"editor.formatOnSaveMode": "file",
"editor.formatOnSave": true,
"editor.defaultFormatter": "eeyore.yapf",
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
},
}

0 comments on commit 17fd026

Please sign in to comment.