vscode is added

This commit is contained in:
병준 박 2019-08-17 15:22:24 +09:00
parent 76654bca02
commit 4a608242f3
3 changed files with 32 additions and 1 deletions

2
.gitignore vendored
View File

@ -28,4 +28,4 @@ target/
build/ build/
### VS Code ### ### VS Code ###
.vscode/ # .vscode/

11
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,11 @@
{
"configurations": [
{
"type": "java",
"name": "CodeLens (Launch) - ServerApplication",
"request": "launch",
"mainClass": "com.totopia.server.ServerApplication",
"projectName": "server"
}
]
}

20
.vscode/settings.json vendored Normal file
View File

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