tiny_clip / .vscode /settings.json
sachin's picture
succesful local run
c6fe3c5
raw
history blame
851 Bytes
{
"files.insertFinalNewline": true,
"jupyter.debugJustMyCode": false,
"editor.formatOnSave": true,
// "editor.formatOnPaste": true,
"files.autoSave": "onFocusChange",
"editor.defaultFormatter": "ms-python.black-formatter",
"black-formatter.path": ["/opt/homebrew/bin/black"],
"black-formatter.args": ["--config", "./pyproject.toml"],
"black-formatter.cwd": "${workspaceFolder}",
"isort.check": true,
"python.analysis.typeCheckingMode": "basic",
"python.defaultInterpreterPath": "/opt/homebrew/bin/python3",
// "[python]": {
// "editor.defaultFormatter": "ms-python.black-formatter",
// "editor.formatOnSave": true,
// "editor.codeActionsOnSave": {
// "source.organizeImports": "explicit"
// },
// },
// "isort.args":["--profile", "black"],
}