Skip to content
Snippets Groups Projects
Commit 9a42c857 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

add vscode files

parent ee32d290
No related branches found
No related tags found
2 merge requests!141Production Release | nshmp-ws-static,!139VS Code
......@@ -3,7 +3,6 @@
.project
.settings
.gradle
.vscode
bin
build
classes
......@@ -18,7 +17,6 @@ swagger-files
libs
.factorypath
.apt_*
.vscode
*version.json
# Node
......
{
/*
* VS Code recommended extensions for nshmp-ws-static.
*
* For more information on extension,
* visit: https://code.visualstudio.com/docs/editor/extension-marketplace
*/
"recommendations": [
"davidanson.vscode-markdownlint",
"editorconfig.editorconfig",
"gitlab.gitlab-workflow",
"jumpinjackie.vscode-map-preview",
"redhat.vscode-yaml",
"vscjava.vscode-gradle",
"vscjava.vscode-java-pack",
]
}
{
/*
* VS Code settings for nshmp-ws-static.
*
* For more information on settings,
* visit: https://code.visualstudio.com/docs/getstarted/settings
*/
"editor.rulers": [
{
"column": 100
}
],
"editor.tabSize": 2,
"files.associations": {
"*.geojson": "json"
},
"java.compile.nullAnalysis.mode": "automatic",
"java.configuration.updateBuildConfiguration": "automatic",
"java.import.generatesMetadataFilesAtProjectRoot": true,
"files.exclude": {
"**/.classpath": true,
"**/.DS_Store": true,
"**/.factorypath": true,
"**/.git": true,
"**/.gradle": true,
"**/.project": true,
"**/.settings": true,
"**/bin": true,
"**/node_modules": true,
"**/package*.json": true,
}
}
{
/*
* VS Code tasks for nshmp-ws-static.
*
* For more information on tasks, visit: https://code.visualstudio.com/docs/editor/tasks
*/
"version": "2.0.0",
"tasks": [
/*
* Task to automatically run the `./gradlew eclipse` task on startup to
* keep the `.classpath` file updated.
*/
{
"label": "Update Classpath File",
"type": "shell",
"command": "./gradlew eclipse",
"windows": {
"command": "gradle.bat eclipse"
},
"presentation": {
"close": true,
},
"group": "none",
"runOptions": {
"runOn": "folderOpen"
}
}
]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment