Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .vscode/java.format.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<profiles version="21">
<profile kind="CodeFormatterProfile" name="Custom" version="21">
<setting id="org.eclipse.jdt.core.formatter.lineSplit" value="80" />
<setting id="org.eclipse.jdt.core.formatter.wrap_before_array_initializer" value="true" />
<setting id="org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer"
value="48" />
<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation"
value="48" />
<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation"
value="48" />
<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_declaration"
value="48" />

</profile>
</profiles>
50 changes: 27 additions & 23 deletions benefit-decision-toolkit.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,39 @@
"folders": [
{
"name": "🏗️ Builder API",
"path": "./builder-api"
"path": "./builder-api",
},
{
"name": "📚 Library API",
"path": "./library-api"
"path": "./library-api",
},
{
"name": "🎨 Builder Frontend",
"path": "./builder-frontend"
"path": "./builder-frontend",
},
{
"name": "📋 Project Root",
"path": "."
}
"path": ".",
},
],
"settings": {
// Java settings for API modules
"java.import.maven.enabled": true,
"java.compile.nullAnalysis.mode": "automatic",
"java.format.settings.url": "./.vscode/java.format.xml",
"java.format.settings.profile": "Custom",
"[java]": {
"editor.defaultFormatter": "redhat.java"
"editor.defaultFormatter": "redhat.java",
},
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
"editor.autoClosingBrackets": "never",
"files.trimFinalNewlines": true,
"editor.defaultFormatter": "redhat.vscode-xml",
},

// Node.js settings for frontend modules
"[javascript, typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[css]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"editor.formatOnSave": true,
Expand All @@ -43,24 +47,24 @@
"files.associations": {
"*.env.example": "properties",
"devbox.json": "jsonc",
"process-compose.yml": "yaml"
"process-compose.yml": "yaml",
},

// Exclude irrelevant folders from search
"search.exclude": {
"**/node_modules": true,
"**/target": true,
"**/.quarkus": true,
"**/dist": true
"**/dist": true,
},

// File watcher excludes for performance
"files.watcherExclude": {
"**/node_modules/**": true,
"**/target/**": true,
"**/.quarkus/**": true,
"**/dist/**": true
}
"**/dist/**": true,
},
},
"extensions": {
"recommendations": [
Expand All @@ -82,8 +86,8 @@
"ms-vscode.remote-containers",

// Project-specific
"jetpack-io.devbox"
]
"jetpack-io.devbox",
],
},
"tasks": {
"version": "2.0.0",
Expand All @@ -94,15 +98,15 @@
"command": "devbox services up",
"group": {
"kind": "build",
"isDefault": true
"isDefault": true,
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
"panel": "shared",
},
"problemMatcher": []
"problemMatcher": [],
},
{
"label": "🔨 Build All APIs",
Expand All @@ -111,15 +115,15 @@
"group": "build",
"presentation": {
"echo": true,
"reveal": "always"
}
"reveal": "always",
},
},
{
"label": "📦 Install All Frontend Dependencies",
"type": "shell",
"command": "cd builder-frontend && npm install",
"group": "build"
}
]
}
"group": "build",
},
],
},
}
Loading