Created
January 28, 2025 07:19
-
-
Save fredrik/8dcd7b24ec0b16a90dbda4e090add004 to your computer and use it in GitHub Desktop.
~/Library/Application Support/Code/User/settings.json
This file contains 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
{ | |
"workbench.colorTheme": "Solarized Light", | |
"editor.minimap.enabled": false, | |
"files.trimTrailingWhitespace": true, | |
"files.trimFinalNewlines": true, | |
"editor.formatOnSave": true, | |
"[python]": { | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": "explicit", | |
"source.unusedImports": "explicit", | |
"source.fixAll": "explicit", | |
}, | |
"editor.defaultFormatter": "charliermarsh.ruff", | |
}, | |
"python.analysis.autoImportCompletions": true, | |
"python.terminal.activateEnvironment": true, | |
"security.workspace.trust.untrustedFiles": "open", | |
"github.copilot.editor.enableAutoCompletions": true, | |
"ruff.format.args": [ | |
"--line-length=120" | |
], | |
"editor.unicodeHighlight.invisibleCharacters": false, | |
"editor.unicodeHighlight.ambiguousCharacters": false, | |
"ruff.organizeImports": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment