Skip to content

Instantly share code, notes, and snippets.

@Martins6
Last active March 4, 2025 13:53
Show Gist options
  • Save Martins6/83431ff4efa4a83d9a5453cb837319d2 to your computer and use it in GitHub Desktop.
Save Martins6/83431ff4efa4a83d9a5453cb837319d2 to your computer and use it in GitHub Desktop.
VsCode settings using Ruff and using colour lines for max-length.
{
"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