Skip to content

Commit

Permalink
Update IDE config
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Nov 6, 2023
1 parent 7dab379 commit a2992e4
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
"github.vscode-pull-request-github",
"grapecity.gc-excelviewer",
"ms-python.python",
"ms-python.flake8",
"ms-python.isort",
"njpwerner.autodocstring"
]
}
30 changes: 19 additions & 11 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,30 @@
{
// Editor
"editor.bracketPairColorization.enabled": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.formatOnSave": true,
"editor.guides.bracketPairs": "active",
"editor.rulers": [
88
],
"editor.wordWrapColumn": 88,
"files.associations": {
"./requirements/*.txt": "pip-requirements"
},
// Python
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.guides.bracketPairs": "active",
"editor.rulers": [
88
],
"editor.wordWrapColumn": 88,
},
"flake8.args": [
"--config=setup.cfg",
"--verbose"
],
"isort.args": [
"--profile",
"black"
],
"isort.check": true,
// extensions
"autoDocstring.guessTypes": true,
"autoDocstring.docstringFormat": "google",
Expand Down

0 comments on commit a2992e4

Please sign in to comment.