Invalid JSON: Expected double-quoted property name in JSON
at line 5, column 5
| { | |
| "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"], | |
| "python.testing.unittestEnabled": false, | |
| "python.testing.pytestEnabled": true, | |
| "python.testing.cwd": "${workspaceFolder}/", | |
| "python.envFile": "${workspaceFolder}/.env", | |
| } | |