monaco-editor/.vscode/settings.json
Alexandru Dima 35eb0efbc0
Switch to yarn which supports overriding resolutions to address vulnerabilities in dependencies of dependencies (#3242)
* Switch to `yarn` which supports overriding resolutions to address vulnerabilities in dependencies of dependencies

* Go back to npm and use `overrides`
2022-08-12 11:31:04 -04:00

16 lines
494 B
JSON

// Place your settings in this file to overwrite default and user settings.
{
"editor.tabSize": 4,
"editor.insertSpaces": false,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"search.exclude": {
"**/node_modules": true,
"**/release": true,
"**/out": true
},
"typescript.tsdk": "./node_modules/typescript/lib",
"git.branchProtection": ["main", "release/*"],
"git.branchProtectionPrompt": "alwaysCommitToNewBranch",
"git.branchRandomName.enable": true
}