Skip to content

Commit

Permalink
reformatted code to better git epymorph standards
Browse files Browse the repository at this point in the history
  • Loading branch information
IzMo2000 committed Mar 20, 2024
1 parent dc90991 commit af3d20e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@
"**/__pycache__": true,
".pytest_cache": true
},
"vim.leader": "<Space>",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"editor.lineNumbers": "relative",

"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
Expand All @@ -21,12 +20,15 @@
"notebook.codeActionsOnSave": {
"source.organizeImports": "explicit"
},

"autopep8.importStrategy": "fromEnvironment",
"isort.importStrategy": "fromEnvironment",

"python.formatting.provider": "none",
"python.analysis.autoImportCompletions": true,
"python.analysis.typeCheckingMode": "basic",
"python.analysis.diagnosticMode": "workspace",

"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"python.testing.unittestArgs": [
Expand All @@ -36,12 +38,14 @@
"-p",
"*_test.py"
],

"editor.defaultFormatter": null,
"[python]": {
"editor.detectIndentation": false,
"editor.insertSpaces": true,
"editor.tabSize": 4,
"editor.defaultFormatter": "ms-python.autopep8",
},

"jupyter.notebookFileRoot": "${workspaceFolder}",
}

0 comments on commit af3d20e

Please sign in to comment.