Update devcontainer memory settings

CodeQL CLI needs a minimum of 2G of memory. By default, the memory used
is slightly less than that, leading to poor performance.
This commit is contained in:
Andrew Eisenberg 2020-09-02 11:55:44 -07:00 коммит произвёл Andrew Eisenberg
Родитель 4c4e41c030
Коммит d2f5715e20
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -3,5 +3,8 @@
"github.vscode-codeql",
"slevesque.vscode-zipexplorer"
],
"postCreateCommand": "git submodule init && git submodule update --recursive"
"postCreateCommand": "git submodule init && git submodule update --recursive",
"settings": {
"codeQL.runningQueries.memory": 2048
}
}