mirror of
https://github.com/tiqi-group/pydase_service_base.git
synced 2025-04-19 16:10:02 +02:00
29 lines
778 B
JSON
29 lines
778 B
JSON
{
|
|
"autoDocstring.docstringFormat": "google",
|
|
"autoDocstring.startOnNewLine": true,
|
|
"autoDocstring.generateDocstringOnEnter": true,
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
},
|
|
"editor.rulers": [
|
|
88
|
|
],
|
|
"python.formatting.provider": "black",
|
|
"python.linting.lintOnSave": true,
|
|
"python.linting.enabled": true,
|
|
"python.linting.flake8Enabled": true,
|
|
"python.linting.mypyEnabled": true,
|
|
"[python]": {
|
|
"editor.tabSize": 4,
|
|
"editor.detectIndentation": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true
|
|
}
|
|
},
|
|
"[yaml]": {
|
|
"editor.tabSize": 2,
|
|
"editor.detectIndentation": false
|
|
}
|
|
}
|