87 lines
2.6 KiB
JSON
87 lines
2.6 KiB
JSON
// Place your settings in this file to overwrite default and user settings.
|
|
{
|
|
"files.exclude": {
|
|
"**/out": true, // set this to true to hide the "out" folder with the compiled JS files
|
|
"**/dist": true,
|
|
"**/node_modules": true,
|
|
"common/temp": true,
|
|
"**/.vscode-test": true
|
|
},
|
|
"files.watcherExclude": {
|
|
"**/.git/**": true,
|
|
"**/out": true,
|
|
"**/dist": true,
|
|
"**/node_modules": true,
|
|
"common/temp": true,
|
|
"**/.vscode-test": true
|
|
},
|
|
"search.exclude": {
|
|
"**/out": true, // set this to false to include "out" folder in search results
|
|
"**/dist": true,
|
|
"**/node_modules": true,
|
|
"common/temp": true,
|
|
"**/.vscode-test": true
|
|
},
|
|
"typescript.tsdk": "./extensions/ql-vscode/node_modules/typescript/lib", // we want to use the TS server from our node_modules folder to control its version
|
|
"typescript.enablePromptUseWorkspaceTsdk": true,
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact"
|
|
],
|
|
// This is necessary to ensure that ESLint can find the correct configuration files and plugins.
|
|
"eslint.workingDirectories": ["./extensions/ql-vscode"],
|
|
"editor.formatOnSave": false,
|
|
"typescript.preferences.quoteStyle": "single",
|
|
"javascript.preferences.quoteStyle": "single",
|
|
"editor.wordWrapColumn": 100,
|
|
"jest.rootPath": "./extensions/ql-vscode",
|
|
"jest.autoRun": "off",
|
|
"jest.nodeEnv": {
|
|
"LANG": "en-US",
|
|
"TZ": "UTC"
|
|
},
|
|
|
|
// These options are used by the `jestrunner.debug` command.
|
|
// They are not used by the `jestrunner.run` command.
|
|
"jestrunner.debugOptions": {
|
|
// Uncomment to debug integration tests
|
|
// "attachSimplePort": 9223,
|
|
"env": {
|
|
"LANG": "en-US",
|
|
"TZ": "UTC",
|
|
|
|
// Uncomment to set a custom path to a CodeQL checkout.
|
|
// "TEST_CODEQL_PATH": "../codeql",
|
|
|
|
// Uncomment to set a custom path to a CodeQL CLI executable.
|
|
// This is the CodeQL version that will be used in the tests.
|
|
// "CLI_PATH": "/path/to/customg/codeql",
|
|
|
|
// Uncomment to debug integration tests
|
|
// "VSCODE_WAIT_FOR_DEBUGGER": "true",
|
|
}
|
|
},
|
|
"terminal.integrated.env.linux": {
|
|
"LANG": "en-US",
|
|
"TZ": "UTC"
|
|
},
|
|
"terminal.integrated.env.osx": {
|
|
"LANG": "en-US",
|
|
"TZ": "UTC"
|
|
},
|
|
"terminal.integrated.env.windows": {
|
|
"LANG": "en-US",
|
|
"TZ": "UTC"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
},
|
|
}
|