File size: 619 Bytes
c44e6d0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
{
"editor.formatOnSave": true,
"files.insertFinalNewline": false,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnType": true,
"editor.codeActionsOnSave": {
"source.fixAll.ruff": "explicit",
"source.organizeImports": "explicit"
}
},
"[jupyter]": {
"files.insertFinalNewline": false
},
"notebook.output.scrolling": true,
"notebook.formatOnCellExecution": true,
"notebook.formatOnSave.enabled": true,
"notebook.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
}
|