Fmt: add vscode configs for format on save

This commit is contained in:
John Doe
2024-10-16 09:38:45 +03:30
parent 65cae59fc9
commit cb8d38397f

View File

@@ -4,5 +4,14 @@
"path": "."
}
],
"settings": {}
"settings": {
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8",
"editor.formatOnSave": true,
},
"autopep8.args": [ "--max-line-length", "120" ],
"editor.codeActionsOnSave": {
"source.organizeImports": "never"
}
}
}