Created
December 1, 2024 15:28
-
-
Save a0s/9de1e2a108d2c552c38930d729529bcd to your computer and use it in GitHub Desktop.
Cursor + ruff vscode minimal config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"[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