summaryrefslogtreecommitdiffstats
path: root/.vscode/settings.json
blob: 517a86d1bfaa782636e540f41c7970edf182cde5 (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
{
    "files.watcherExclude": {
        "**/.git/**": true,
        "**/cache/**": true,
        "**/tmp*/**": true,
        "**/downloads/**": true,
        "**/sstate-cache/**": true,
        "**/vscode-bitbake-build/**": true,
        "**/workspace/sources/**": true,
        "**/workspace/attic/**": true
    },
    "files.exclude": {
        "**/.git/**": true,
        "**/cache/**": true,
        "**/tmp*/**": true,
        "**/downloads/**": true,
        "**/sstate-cache/**": true,
        "**/vscode-bitbake-build/**": true,
        "**/workspace/sources/**": true,
        "**/workspace/attic/**": true
    },
    "python.analysis.exclude": [
        "**/.git/**",
        "**/cache/**",
        "**/tmp*/**",
        "**/downloads/**",
        "**/sstate-cache/**",
        "**/vscode-bitbake-build/**",
        "**/workspace/sources/**",
        "**/workspace/attic/**"
    ]
}