chore(linting): fixed for pyhon (#346)

This commit is contained in:
Stan Girard 2023-06-20 10:10:56 +02:00 committed by GitHub
parent e1a740472f
commit 5ebe6661dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
.vscode/settings.json vendored
View File

@ -2,7 +2,7 @@
"python.formatting.provider": "black",
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll":true
"source.fixAll": true
},
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
@ -11,5 +11,11 @@
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"editor.formatOnSaveMode": "modifications"
}
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
}
}