File size: 818 Bytes
93fd2ea
61476cc
 
93fd2ea
11cddad
93fd2ea
 
61476cc
93fd2ea
 
61476cc
 
 
11cddad
 
 
 
 
 
 
61476cc
11cddad
 
61476cc
 
 
 
 
 
93fd2ea
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"
        }
}