Skip to content

Instantly share code, notes, and snippets.

@a0s
Created December 1, 2024 15:28
Show Gist options
  • Save a0s/9de1e2a108d2c552c38930d729529bcd to your computer and use it in GitHub Desktop.
Save a0s/9de1e2a108d2c552c38930d729529bcd to your computer and use it in GitHub Desktop.
Cursor + ruff vscode minimal config
{
"[python]": {
"editor.formatOnSave":true,
"editor.codeActionsOnSave": {
"source.fixAll": "always", # You have to use "always" unlike what the ruff documentation says. "explicit" never works for me.
"source.organizeImports": "always" # You have to use "always" unlike what the ruff documentation says. "explicit" never works for me.
},
"editor.defaultFormatter": "charliermarsh.ruff"
},
"files.autoSave": "onFocusChange"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment