Created
March 26, 2018 07:29
-
-
Save SamvelRaja/63d3ffe411137dd0e1e191f99f1cfa2b to your computer and use it in GitHub Desktop.
.vscode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Renderer Mocha Tests", | |
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", | |
"args": [ | |
"--colors", | |
"--timeout", | |
"999999", | |
"--compilers", | |
"js:babel-core/register", | |
"--require", | |
"${workspaceFolder}/src/renderer/tests/unit/unit-test-setup.js", | |
"${workspaceFolder}/src/renderer/js/**/_tests/*.js" | |
], | |
"internalConsoleOptions": "openOnSessionStart" | |
}, | |
{ | |
"name": "Main process", | |
"type": "node", | |
"request": "launch", | |
"cwd": "${workspaceFolder}", | |
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron", | |
"windows": { | |
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd" | |
}, | |
"program": "${workspaceFolder}/build/main.js", | |
"protocol": "legacy", | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your settings in this file to overwrite the default settings | |
{ | |
"search.exclude": { | |
"USE_GITIGNORE": true | |
}, | |
"explorer.openEditors.visible":0, | |
"editor.renderWhitespace": "all", | |
"editor.minimap.enabled": false, | |
"editor.tabSize": 2, | |
"window.zoomLevel": -2, | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.activityBar.visible": false, | |
"vsicons.presets.jsOfficial": true, | |
"vsicons.presets.tsOfficial": true, | |
"vsicons.presets.jsonOfficial": true, | |
"vsicons.presets.hideFolders": true, | |
"vsicons.presets.foldersAllDefaultIcon": true, | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
"suppressUpdateNotice": false, | |
"suppressWelcomeNotice": true | |
}, | |
"gitlens.keymap": "alternate", | |
"cSpell.enabledLanguageIds": [ | |
"c", | |
"cpp", | |
"csharp", | |
"css", | |
"go", | |
"handlebars", | |
"html", | |
"jade", | |
"javascript", | |
"javascriptreact", | |
"json", | |
"latex", | |
"less", | |
"markdown", | |
"php", | |
"plaintext", | |
"pub", | |
"python", | |
"restructuredtext", | |
"rust", | |
"scss", | |
"shellscript", | |
"text", | |
"typescript", | |
"typescriptreact", | |
"yml" | |
], | |
"cSpell.words": [ | |
"relauncher", | |
"relaunchers", | |
"relaunch" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment