mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-04-19 16:10:01 +02:00
29 lines
849 B
JSON
29 lines
849 B
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"[python]": {
|
|
"editor.defaultFormatter": "charliermarsh.ruff",
|
|
"editor.rulers": [
|
|
88
|
|
],
|
|
"editor.tabSize": 4,
|
|
"editor.detectIndentation": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll": "explicit"
|
|
}
|
|
},
|
|
"[yaml]": {
|
|
"editor.tabSize": 2,
|
|
"editor.detectIndentation": false
|
|
},
|
|
"[typescript][javascript][vue][typescriptreact]": {
|
|
"editor.tabSize": 2,
|
|
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint",
|
|
"editor.formatOnPaste": false,
|
|
"editor.formatOnType": false,
|
|
"editor.formatOnSaveMode": "file",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
}
|
|
}
|
|
} |