summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-11 22:59:19 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-10-11 22:59:19 +0200
commitdbcd85451edfc33f2e0a42c431f0cf3ab3b12876 (patch)
tree1a1f2c1dae9c248db6fc106eab67f1366e15734a /.vscode
parente35455435e4df79c3e566efd68b2b0628caeb2eb (diff)
downloadwallet-core-dbcd85451edfc33f2e0a42c431f0cf3ab3b12876.tar.gz
wallet-core-dbcd85451edfc33f2e0a42c431f0cf3ab3b12876.tar.bz2
wallet-core-dbcd85451edfc33f2e0a42c431f0cf3ab3b12876.zip
vscode settings
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/settings.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 000000000..46ce686a5
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,34 @@
+// Place your settings in this file to overwrite default and user settings.
+{
+ // Use latest language services
+ "typescript.tsdk": "node_modules/typescript/lib",
+ // Defines space handling after a comma delimiter
+ "typescript.format.insertSpaceAfterCommaDelimiter": true,
+ // Defines space handling after a semicolon in a for statement
+ "typescript.format.insertSpaceAfterSemicolonInForStatements": true,
+ // Defines space handling after a binary operator
+ "typescript.format.insertSpaceBeforeAndAfterBinaryOperators": true,
+ // Defines space handling after keywords in control flow statement
+ "typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
+ // Defines space handling after function keyword for anonymous functions
+ "typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
+ // Defines space handling after opening and before closing non empty parenthesis
+ "typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
+ // Defines space handling after opening and before closing non empty brackets
+ "typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
+ // Defines whether an open brace is put onto a new line for functions or not
+ "typescript.format.placeOpenBraceOnNewLineForFunctions": false,
+ // Defines whether an open brace is put onto a new line for control blocks or not
+ "typescript.format.placeOpenBraceOnNewLineForControlBlocks": false,
+ // Files hidden in the explorer
+ "files.exclude": {
+ // include the defaults from VS Code
+ "**/.git": true,
+ "**/.DS_Store": true,
+ // exclude .js and .js.map files, when in a TypeScript project
+ "**/*.js": {
+ "when": "$(basename).ts"
+ },
+ "**/*.js.map": true
+ }
+} \ No newline at end of file