Spaces:
Running
on
Zero
Running
on
Zero
File size: 675 Bytes
8824f88 e744d60 8824f88 e744d60 8824f88 e744d60 8824f88 e744d60 8824f88 e744d60 8824f88 |
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 |
{
"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
}
|