Files
codeql/.devcontainer/devcontainer.json
Andrew Eisenberg 2e8e970978 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 change also removes two old, unused settings.
2020-09-02 12:07:05 -07:00

11 lines
216 B
JSON

{
"extensions": [
"github.vscode-codeql",
"slevesque.vscode-zipexplorer"
],
"settings": {
"codeQL.runningQueries.memory": 2048,
"codeQL.runningQueries.debug": true
}
}