-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnufacturing.code-workspace
More file actions
290 lines (268 loc) · 8.11 KB
/
nufacturing.code-workspace
File metadata and controls
290 lines (268 loc) · 8.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
{
"folders": [
{
"name": "Nufacturing Frontend (Angular App)",
"path": "submodules/nufacturing",
},
{
"name": "Nufacturing API",
"path": ".",
},
{
"name": "Nufulfillment-Veracore Integration",
"path": "submodules/nufulfillment-veracore",
},
{
"name": "Gallimore Dev Tools",
"path": "submodules/gallimore-devtools",
},
{
"name": "Ag-Grid Demos",
"path": "../gallimore-ag-grid-demos",
},
],
"settings": {
// General Workspace Settings
"editor.formatOnSave": true,
"editor.tabSize": 2,
"files.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/build": true,
"**/.git": true,
"**/.DS_Store": true,
},
"files.watcherExclude": {
"**/node_modules/**": true,
"**/.git/**": true,
},
// TypeScript and Linting Settings
"typescript.tsdk": "./node_modules/typescript/lib",
"typescript.tsconfigPath": "tsconfig.json",
"eslint.workingDirectories": [
{ "directory": ".", "changeProcessCWD": true },
{ "directory": "submodules/nufacturing", "changeProcessCWD": true },
{
"directory": "submodules/nufulfillment-veracore",
"changeProcessCWD": true,
},
{
"directory": "submodules/gallimore-devtools",
"changeProcessCWD": true,
},
],
"eslint.validate": ["javascript", "typescript", "typescriptreact"],
// Prettier and Code Formatting
"prettier.requireConfig": true,
"prettier.useTabs": false,
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
// Integrated Testing & Debugging
"jest.runMode": "on-demand",
"cypress.resolvers": [{ "cypress": "cypress.json" }],
"terminal.integrated.env.windows": { "NODE_ENV": "development" },
"terminal.integrated.env.linux": { "NODE_ENV": "development" },
"terminal.integrated.env.osx": { "NODE_ENV": "development" },
// Code Navigation and Aliases
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.referencesCodeLens.enabled": true,
"typescript.implementationsCodeLens.enabled": true,
"typescript.suggest.autoImports": true,
// Custom Clean-LLM Architecture Configurations
"files.associations": {
"*.dto.ts": "typescript",
"*.event-handler.ts": "typescript",
"*.repository.ts": "typescript",
"*.use-case.ts": "typescript",
"*.controller.ts": "typescript",
"*.integration.ts": "typescript",
},
"workbench.editorAssociations": { "*.md": "default" },
"explorer.sortOrder": "type",
// Appearance Customizations
"workbench.colorCustomizations": {
"activityBar.background": "#002b36",
"titleBar.activeBackground": "#073642",
"titleBar.activeForeground": "#839496",
},
// Spell Check and Language Support
"cSpell.words": [
"gallimore",
"inversify",
"nufacturing",
"Receivements",
"scheduleding",
"userapi",
"veracore",
],
"cSpell.ignoreWords": [
"Backordered",
"Gummies",
"Nufacturing",
"Stickpacks",
"autogen",
"backorderedQty",
"dtos",
"gallimore",
"graphviz",
"inversify",
"nufulfillment",
"openapitools",
"plopfile",
"precommit",
"skus",
"unverify",
"veracore",
"wips",
],
// Docker Support for Microservices
"docker.dockerComposeFile": [
"docker-compose.yml",
"submodules/nufacturing/docker-compose.yml",
"submodules/nufulfillment-veracore/docker-compose.yml",
],
"docker.containers.restart": "on-failure",
// Git Graph for Branch Visualization
"git-graph.repository.commits.loadMoreLimit": 100,
"git-graph.defaultColumnVisibility": {
"author": true,
"date": true,
"message": true,
},
// Code Snippets for Consistency
"editor.snippets": {
"typescript": {
"dto": {
"prefix": "dto",
"body": ["export class ${1:ExampleDTO} {", " $2", "}"],
"description": "Create a Data Transfer Object template",
},
},
},
// Auto Close Brackets and Quotes
"editor.autoClosingBrackets": "always",
"editor.autoClosingQuotes": "always",
"editor.autoSurround": "brackets",
// Enhanced Markdown Preview
"markdown.preview.fontSize": 14,
"markdown.preview.scrollEditorWithPreview": true,
"markdown.preview.lineHeight": 1.6,
// Multi-root Workspace Support
"workspaceFolders": [
{ "name": "API", "path": "." },
{ "name": "Frontend", "path": "submodules/nufacturing" },
{
"name": "Fulfillment Integration",
"path": "submodules/nufulfillment-veracore",
},
],
// Path IntelliSense for Custom Aliases
"typescript.suggest.pathIntelliSense": true,
// SCSS and CSS Linting with Stylelint
"stylelint.enable": true,
"stylelint.validate": ["scss", "css"],
"stylelint.config": {
"extends": "stylelint-config-standard",
"rules": {
"color-hex-case": "lower",
"block-no-empty": true,
},
},
// Auto-save Configurations
"files.autoSave": "onFocusChange",
"files.autoSaveDelay": 1000,
// Markdown Lint for Documentation Consistency
"markdownlint.config": {
"default": true,
"MD013": false, // Line length
"MD029": { "style": "ordered" }, // Ordered list item prefix
},
// Improved Editor Rulers
"editor.rulers": [80, 100, 120],
// Code Spell Checker Configuration
"cSpell.enabled": true,
"cSpell.language": "en",
"cSpell.showStatus": true,
},
"launch": {
"compounds": [
{
"name": "Full Stack Debug",
"configurations": ["Launch Main API", "Debug Frontend"],
},
],
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Main API",
"program": "${workspaceFolder}/src/main.ts",
"preLaunchTask": "tsc: build - tsconfig.json",
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
"env": { "NODE_ENV": "development" },
"sourceMaps": true,
"skipFiles": ["<node_internals>/**"],
},
{
"type": "chrome",
"request": "launch",
"name": "Debug Frontend",
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}/submodules/nufacturing/src",
},
],
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "build-all",
"type": "shell",
"command": "npm run build && npm --prefix submodules/nufacturing run build && npm --prefix submodules/nufulfillment-veracore run build",
"group": "build",
"problemMatcher": ["$tsc"],
"detail": "Build all components in the CLEAN-LLM architecture.",
},
{
"label": "lint-all",
"type": "shell",
"command": "npm run lint && npm --prefix submodules/nufacturing run lint && npm --prefix submodules/nufulfillment-veracore run lint",
"group": "build",
"problemMatcher": ["$eslint-stylish"],
"detail": "Lint all code in the workspace.",
},
{
"label": "test-all",
"type": "shell",
"command": "npm test && npm --prefix submodules/nufacturing run test && npm --prefix submodules/nufulfillment-veracore run test",
"group": "test",
"problemMatcher": ["$jest"],
"detail": "Run all unit tests in the workspace.",
},
{
"label": "docker-compose up",
"type": "shell",
"command": "docker-compose up",
"detail": "Run all services in Docker Compose",
"group": "build",
},
],
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"ms-azuretools.vscode-docker",
"eamodio.gitlens",
"orta.vscode-jest",
"msjsdiag.debugger-for-chrome",
"cypress.cypress",
"streetsidesoftware.code-spell-checker",
"editorconfig.editorconfig",
"stylelint.vscode-stylelint",
"github.vscode-pull-request-github",
"hediet.vscode-drawio",
"pflannery.vscode-versionlens",
],
},
}