summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--.vscode/settings.json32
2 files changed, 34 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 8f48d452da..f6ce090b5f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -36,3 +36,5 @@ _toaster_clones/
36downloads/ 36downloads/
37sstate-cache/ 37sstate-cache/
38toaster.sqlite 38toaster.sqlite
39.vscode/
40vscode-bitbake-build/
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000000..517a86d1bf
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,32 @@
1{
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}