Files
codeql-lab/.devcontainer/devcontainer.json
Andrew Eisenberg 783278e2dd 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.
2020-09-02 12:42:21 -07:00

11 lines
233 B
JSON

{
"extensions": [
"github.vscode-codeql",
"slevesque.vscode-zipexplorer"
],
"postCreateCommand": "git submodule init && git submodule update --recursive",
"settings": {
"codeQL.runningQueries.memory": 2048
}
}