Spaces:
Running
on
Zero
Running
on
Zero
File size: 818 Bytes
0edd51d 75863be 0edd51d 89539f7 0edd51d 75863be 0edd51d 75863be 89539f7 75863be 89539f7 75863be 0edd51d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
{
"editor.formatOnSave": true,
"files.insertFinalNewline": false,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnType": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"[jupyter]": {
"files.insertFinalNewline": false
},
"black-formatter.args": [
"--line-length=119"
],
"isort.args": ["--profile", "black"],
"flake8.args": [
"--max-line-length=119"
],
"ruff.lint.args": [
"--line-length=119"
],
"notebook.output.scrolling": true,
"notebook.formatOnCellExecution": true,
"notebook.formatOnSave.enabled": true,
"notebook.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
}
|