diffusion / .vscode /settings.json
adamelliotfields's picture
Ruff
4967879 verified
raw
history blame contribute delete
No virus
574 Bytes
{
"editor.rulers": [99],
"files.exclude": {
".venv/**": true
},
"files.watcherExclude": {
".venv/**": true
},
"notebook.formatOnSave.enabled": true,
"notebook.codeActionsOnSave": {
"notebook.source.fixAll.ruff": "explicit",
"notebook.source.organizeImports.ruff": "explicit"
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.codeActionsOnSave": {
"source.fixAll.ruff": "explicit",
"source.organizeImports.ruff": "explicit"
}
}
}