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" +}