summaryrefslogtreecommitdiffstats
path: root/.vscode/settings.json
blob: d17cb5be26e678e5f80731e2d0db93a673a97757 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
    "[markdown]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "editor.formatOnSave": true,
    "evenBetterToml.formatter.allowedBlankLines": 2,
    "files.exclude": {
        "*.egg-info": true,
        ".pytest_cache": true,
        ".tox": true,
        "__pycache__": true,
        "build": true
    },
    "git.ignoreLimitWarning": true,
    "grammarly.domain": "technical",
    "grammarly.files.include": [
        "**/*.txt",
        "**/*.md"
    ],
    "grammarly.hideUnavailablePremiumAlerts": true,
    "grammarly.showExamples": true,
    "python.analysis.exclude": [
        "build"
    ],
    "python.formatting.provider": "black",
    "python.linting.flake8Args": [
        "--ignore=E501,W503"
    ],
    "python.linting.flake8Enabled": false,
    "python.linting.mypyCategorySeverity.error": "Warning",
    "python.linting.mypyEnabled": true,
    "python.linting.pylintEnabled": true,
    "python.terminal.activateEnvironment": true,
    "python.testing.pytestEnabled": true,
    "python.testing.unittestEnabled": false,
    "sortLines.filterBlankLines": true,
    "yaml.completion": true,
    "yaml.customTags": [
        "!encrypted/pkcs1-oaep scalar",
        "!vault scalar"
    ],
    "yaml.format.enable": false,
    "yaml.validate": true,
    "evenBetterToml.formatter.alignComments": false,
    "[python]": {
        "editor.codeActionsOnSave": {
            "source.organizeImports": true,
            "source.fixAll": true
          }
    }
}