blob: 517a86d1bfaa782636e540f41c7970edf182cde5 [file] [log] [blame]
Patrick Williamsac13d5f2023-11-24 18:59:46 -06001{
2 "files.watcherExclude": {
3 "**/.git/**": true,
4 "**/cache/**": true,
5 "**/tmp*/**": true,
6 "**/downloads/**": true,
7 "**/sstate-cache/**": true,
8 "**/vscode-bitbake-build/**": true,
9 "**/workspace/sources/**": true,
10 "**/workspace/attic/**": true
11 },
12 "files.exclude": {
13 "**/.git/**": true,
14 "**/cache/**": true,
15 "**/tmp*/**": true,
16 "**/downloads/**": true,
17 "**/sstate-cache/**": true,
18 "**/vscode-bitbake-build/**": true,
19 "**/workspace/sources/**": true,
20 "**/workspace/attic/**": true
21 },
22 "python.analysis.exclude": [
23 "**/.git/**",
24 "**/cache/**",
25 "**/tmp*/**",
26 "**/downloads/**",
27 "**/sstate-cache/**",
28 "**/vscode-bitbake-build/**",
29 "**/workspace/sources/**",
30 "**/workspace/attic/**"
31 ]
32}