File size: 694 Bytes
fe5044d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
    "files.trimTrailingWhitespace": true,
    "files.insertFinalNewline": true,
    "python.formatting.provider": "black",
    "python.linting.flake8Enabled": true,
    "editor.tabSize": 2,
    "files.encoding": "utf8",
    "files.eol": "\n",
    "[python]": {
        "editor.formatOnSave": true,
        "editor.tabSize": 4,
        "editor.codeActionsOnSave": {
            "source.organizeImports": true
        },
    },
    "isort.args":["--profile", "black"],
    "editor.rulers": [
        88
    ],
    "files.exclude": {
        "**/__pycache__": true,
        "build/**": true
    },
    "autoDocstring.guessTypes": false,
    "search.exclude": {
        "build/**": true
    },
}