vscode and cursor IDE settings
Autosave and format
"files.autoSave": "onFocusChange",
"[python]": {
"editor.formatOnSave": true,
// "editor.defaultFormatter": "charliermarsh.ruff",
"editor.defaultFormatter": "ms-python.black-formatter",
// reformat everything w/ ruff
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
},
For fix all etc. w/ ruff:
Adding rulers
"editor.rulers": [
78, 88
]
Nel mezzo del deserto posso dire tutto quello che voglio.
comments powered by Disqus