From 5b2b4a7360489fb5692ee74da3930a63e9c730a4 Mon Sep 17 00:00:00 2001 From: shimataro Date: Wed, 18 Sep 2019 22:38:14 +0900 Subject: [PATCH] * support Visual Studio Code officially --- ssh-key-action.code-workspace | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 ssh-key-action.code-workspace diff --git a/ssh-key-action.code-workspace b/ssh-key-action.code-workspace new file mode 100644 index 0000000..4f60714 --- /dev/null +++ b/ssh-key-action.code-workspace @@ -0,0 +1,31 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": { + "eslint.enable": true, + "json.format.enable": true, + "typescript.format.enable": true, + "typescript.format.insertSpaceAfterCommaDelimiter": true, + "typescript.format.insertSpaceAfterConstructor": false, + "typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, + "typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": false, + "typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false, + "typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false, + "typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false, + "typescript.format.insertSpaceAfterSemicolonInForStatements": true, + "typescript.format.insertSpaceBeforeAndAfterBinaryOperators": true, + "typescript.format.insertSpaceBeforeFunctionParenthesis": false, + "typescript.format.placeOpenBraceOnNewLineForFunctions": true, + "typescript.format.placeOpenBraceOnNewLineForControlBlocks": true, + "typescript.validate.enable": true + }, + "extensions": { + "recommendations": [ + "EditorConfig.EditorConfig", + "eg2.vscode-npm-script" + ] + } +}