File size: 1,036 Bytes
31e368b
 
 
 
c6fe3c5
31e368b
 
 
 
 
 
 
 
 
c6fe3c5
 
 
 
 
 
 
 
571c526
 
 
 
31e368b
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
{
    "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",
}