vscode: exclude nix "result" folders from watcher

This commit is contained in:
Sean Buckley 2021-10-28 01:28:55 -04:00
parent 8bedbd3bc2
commit c7aef83e9f

View file

@ -91,6 +91,7 @@ in
"extensions.autoUpdate" = false; "extensions.autoUpdate" = false;
"files.insertFinalNewline" = true; "files.insertFinalNewline" = true;
"files.trimFinalNewlines" = true; "files.trimFinalNewlines" = true;
"files.watcherExclude"."**/result/**" = true;
"git.confirmSync" = false; "git.confirmSync" = false;
"python.formatting.autopep8Args" = [ "--max-line-length=999" ]; "python.formatting.autopep8Args" = [ "--max-line-length=999" ];
"python.showStartPage" = false; "python.showStartPage" = false;