From 4a608242f31de9991a3b3accfba69cd0cc02ca33 Mon Sep 17 00:00:00 2001 From: Richard Park Date: Sat, 17 Aug 2019 15:22:24 +0900 Subject: [PATCH] vscode is added --- .gitignore | 2 +- .vscode/launch.json | 11 +++++++++++ .vscode/settings.json | 20 ++++++++++++++++++++ 3 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index a2a3040..fdc9df0 100644 --- a/.gitignore +++ b/.gitignore @@ -28,4 +28,4 @@ target/ build/ ### VS Code ### -.vscode/ +# .vscode/ diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..93c4399 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,11 @@ +{ + "configurations": [ + { + "type": "java", + "name": "CodeLens (Launch) - ServerApplication", + "request": "launch", + "mainClass": "com.totopia.server.ServerApplication", + "projectName": "server" + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..f66d8e8 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,20 @@ +{ + "editor.tabSize": 2, + "editor.insertSpaces": true, + "editor.formatOnSave": true, + "editor.formatOnPaste": true, + "editor.autoClosingBrackets": "languageDefined", + "editor.trimAutoWhitespace": true, + "files.trimTrailingWhitespace": true, + "files.trimFinalNewlines": true, + "git.ignoreLimitWarning": true, + "prettier.singleQuote": true, + + "files.exclude": { + "**/.classpath": true, + "**/.project": true, + "**/.settings": true, + "**/.factorypath": true + }, + "java.configuration.updateBuildConfiguration": "automatic" +}