Last active
March 4, 2025 13:53
-
-
Save Martins6/83431ff4efa4a83d9a5453cb837319d2 to your computer and use it in GitHub Desktop.
VsCode settings using Ruff and using colour lines for max-length.
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
{ | |
"notebook.formatOnSave.enabled": true, | |
"notebook.codeActionsOnSave": { | |
"notebook.source.fixAll": "explicit", | |
"notebook.source.organizeImports": "explicit" | |
}, | |
"[python]": { | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll": "explicit", | |
"source.organizeImports": "explicit" | |
}, | |
"editor.defaultFormatter": "charliermarsh.ruff" | |
}, | |
"editor.rulers": [90,120], | |
"workbench.colorCustomizations": { | |
"editorRuler.foreground": "#ff4081" | |
}, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.markdownlint": "explicit" | |
}, | |
"markdownlint.config": { | |
"MD029": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment