Commit 48be158a authored by dullweber's avatar dullweber Committed by Commit bot

vscode.md: change watcherExlude out/ to out*/ to filter ChromeOS build output

BUG=

Review-Url: https://codereview.chromium.org/2847663004
Cr-Commit-Position: refs/heads/master@{#467943}
parent be15d305
...@@ -192,10 +192,13 @@ Remember to replace `<full_path_to_your_home>`! ...@@ -192,10 +192,13 @@ Remember to replace `<full_path_to_your_home>`!
}, },
"files.watcherExclude": { "files.watcherExclude": {
// Don't check out/ and third_party/ for changes to fix issue // Don't watch out*/ and third_party/ for changes to fix an issue
// where vscode doesn't notice that files have changed. // where vscode doesn't notice that files have changed.
// https://github.com/Microsoft/vscode/issues/3998 // https://github.com/Microsoft/vscode/issues/3998
"**/out/**": true, // There is currently another issue that requires a leading **/ for
// watcherExlude. Beware that this pattern might affect other out* folders
// like src/cc/output/.
"**/out*/**": true,
"**/third_party/**": true "**/third_party/**": true
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment