Commit cda93f9
committed
feat: add comprehensive Go implementation with feature parity to JavaScript
- Add new Go tool detector and config wizard following JavaScript patterns
- Create 9 Go commands with consistent naming (go- prefix)
- Update existing Go commands to use new modular command runner
- Add missing commands: go-clean, go-security, go-run
- Rename commands for consistency: go-fmt → go-format, go-deps → go-mod
- Remove old Go implementation files (languages/go/, scripts/go/)
- Update documentation and README references
- Update test files to use new implementation
- All 9 Go commands now match JavaScript feature set:
• go-setup - Configure Go projects
• go-build - Build with cross-compilation
• go-test - Run tests with coverage
• go-lint - Lint code with multiple tools
• go-format - Format code (renamed from go-fmt)
• go-mod - Manage modules (renamed from go-deps)
• go-security - Security scanning
• go-run - Run Go programs
• go-clean - Clean build artifacts1 parent dfcc1bd commit cda93f9
48 files changed
Lines changed: 3727 additions & 5645 deletions
File tree
- commands
- docs
- api
- examples/go-projects/hello-world
- languages
- golang
- go
- config-wizard-modules
- scripts
- commands
- golang
- go
- go-command-runner-modules
- tests
- e2e
- performance
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
127 | 127 | | |
128 | 128 | | |
129 | 129 | | |
130 | | - | |
| 130 | + | |
131 | 131 | | |
132 | 132 | | |
133 | 133 | | |
134 | 134 | | |
135 | | - | |
| 135 | + | |
136 | 136 | | |
137 | 137 | | |
138 | 138 | | |
| |||
146 | 146 | | |
147 | 147 | | |
148 | 148 | | |
149 | | - | |
150 | | - | |
151 | | - | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
152 | 152 | | |
153 | 153 | | |
154 | | - | |
| 154 | + | |
155 | 155 | | |
156 | | - | |
| 156 | + | |
157 | 157 | | |
158 | 158 | | |
159 | | - | |
| 159 | + | |
160 | 160 | | |
161 | 161 | | |
162 | 162 | | |
| |||
173 | 173 | | |
174 | 174 | | |
175 | 175 | | |
176 | | - | |
177 | | - | |
178 | | - | |
179 | | - | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
180 | 180 | | |
181 | 181 | | |
182 | 182 | | |
| |||
295 | 295 | | |
296 | 296 | | |
297 | 297 | | |
298 | | - | |
299 | | - | |
300 | | - | |
301 | | - | |
302 | | - | |
303 | | - | |
| 298 | + | |
304 | 299 | | |
305 | 300 | | |
306 | 301 | | |
| |||
435 | 430 | | |
436 | 431 | | |
437 | 432 | | |
438 | | - | |
| 433 | + | |
439 | 434 | | |
440 | 435 | | |
441 | 436 | | |
| |||
495 | 490 | | |
496 | 491 | | |
497 | 492 | | |
498 | | - | |
| 493 | + | |
499 | 494 | | |
500 | 495 | | |
501 | 496 | | |
| |||
509 | 504 | | |
510 | 505 | | |
511 | 506 | | |
512 | | - | |
| 507 | + | |
513 | 508 | | |
514 | 509 | | |
515 | 510 | | |
| |||
526 | 521 | | |
527 | 522 | | |
528 | 523 | | |
529 | | - | |
| 524 | + | |
530 | 525 | | |
531 | 526 | | |
532 | 527 | | |
| |||
541 | 536 | | |
542 | 537 | | |
543 | 538 | | |
544 | | - | |
| 539 | + | |
545 | 540 | | |
546 | 541 | | |
547 | 542 | | |
| |||
608 | 603 | | |
609 | 604 | | |
610 | 605 | | |
611 | | - | |
| 606 | + | |
612 | 607 | | |
613 | 608 | | |
614 | 609 | | |
615 | 610 | | |
616 | 611 | | |
617 | | - | |
| 612 | + | |
618 | 613 | | |
619 | 614 | | |
620 | 615 | | |
| |||
638 | 633 | | |
639 | 634 | | |
640 | 635 | | |
641 | | - | |
| 636 | + | |
642 | 637 | | |
643 | 638 | | |
644 | 639 | | |
| |||
664 | 659 | | |
665 | 660 | | |
666 | 661 | | |
667 | | - | |
| 662 | + | |
668 | 663 | | |
669 | 664 | | |
670 | 665 | | |
| |||
737 | 732 | | |
738 | 733 | | |
739 | 734 | | |
740 | | - | |
| 735 | + | |
741 | 736 | | |
742 | 737 | | |
743 | 738 | | |
| |||
762 | 757 | | |
763 | 758 | | |
764 | 759 | | |
765 | | - | |
| 760 | + | |
766 | 761 | | |
767 | 762 | | |
768 | 763 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
87 | 87 | | |
88 | 88 | | |
89 | 89 | | |
90 | | - | |
91 | | - | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
92 | 95 | | |
93 | 96 | | |
94 | 97 | | |
| |||
259 | 262 | | |
260 | 263 | | |
261 | 264 | | |
262 | | - | |
263 | | - | |
264 | | - | |
| 265 | + | |
| 266 | + | |
| 267 | + | |
265 | 268 | | |
266 | 269 | | |
267 | 270 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
827 | 827 | | |
828 | 828 | | |
829 | 829 | | |
830 | | - | |
| 830 | + | |
831 | 831 | | |
832 | 832 | | |
833 | 833 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
| 45 | + | |
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
| |||
117 | 117 | | |
118 | 118 | | |
119 | 119 | | |
120 | | - | |
| 120 | + | |
121 | 121 | | |
122 | 122 | | |
123 | 123 | | |
| |||
184 | 184 | | |
185 | 185 | | |
186 | 186 | | |
187 | | - | |
188 | | - | |
| 187 | + | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
189 | 192 | | |
190 | 193 | | |
191 | 194 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
232 | 232 | | |
233 | 233 | | |
234 | 234 | | |
235 | | - | |
| 235 | + | |
236 | 236 | | |
237 | 237 | | |
238 | 238 | | |
| |||
269 | 269 | | |
270 | 270 | | |
271 | 271 | | |
272 | | - | |
| 272 | + | |
273 | 273 | | |
274 | 274 | | |
275 | 275 | | |
| |||
364 | 364 | | |
365 | 365 | | |
366 | 366 | | |
367 | | - | |
368 | | - | |
| 367 | + | |
| 368 | + | |
| 369 | + | |
| 370 | + | |
| 371 | + | |
369 | 372 | | |
370 | 373 | | |
371 | 374 | | |
0 commit comments