-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π synced file(s) with bosch-grow-pat/onyx (#6)
* π created local 'onyx/.vscode/' from remote '.vscode/' * π synced local 'onyx/pkg/' with remote 'pkg/' * π synced local 'onyx/cmd/' with remote 'cmd/' * π synced local 'onyx/internal/' with remote 'internal/' * π synced local 'onyx/Makefile' with remote 'Makefile' * running gazelle: `gazelle -go_prefix github.com/B-S-F/yaku` --------- Co-authored-by: bsf-sync-bot[bot] <180526808+bsf-sync-bot[bot]@users.noreply.github.com> Co-authored-by: Frank Bernhardt <[email protected]>
- Loading branch information
1 parent
22f61ed
commit 1ad9254
Showing
47 changed files
with
610 additions
and
345 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Exec", | ||
"type": "go", | ||
"request": "launch", | ||
"mode": "auto", | ||
"program": "cmd/cli/main.go", | ||
"cwd": "${workspaceFolder}", | ||
"args": [ | ||
"exec", | ||
"${workspaceFolder}/examples", | ||
"--output-dir=${workspaceFolder}/output", | ||
"--check-timeout=5" | ||
], | ||
"envFile": "${workspaceFolder}/.env" | ||
}, | ||
{ | ||
"name": "Schema", | ||
"type": "go", | ||
"request": "launch", | ||
"mode": "auto", | ||
"program": "cmd/cli/main.go", | ||
"cwd": "${workspaceFolder}", | ||
"args": [ | ||
"schema", | ||
], | ||
"envFile": "${workspaceFolder}/.env" | ||
}, | ||
{ | ||
"name": "Migrate", | ||
"type": "go", | ||
"request": "launch", | ||
"mode": "auto", | ||
"program": "cmd/cli/main.go", | ||
"cwd": "${workspaceFolder}", | ||
"args": [ | ||
"migrate", | ||
"${workspaceFolder}/examples/old-qg-config.yaml", | ||
"--output=${workspaceFolder}/examples/new-qg-config.yaml" | ||
], | ||
"envFile": "${workspaceFolder}/.env" | ||
}, | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"go.lintTool": "golangci-lint", | ||
"go.lintFlags": [ | ||
"--fast" | ||
], | ||
"go.testTags": "unit,integration", | ||
"gopls": { | ||
"buildFlags": ["-tags=unit,integration"], | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,7 +76,7 @@ fmt: | |
|
||
.PHONY: setup | ||
setup: | ||
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.52.2 | ||
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.61.0 | ||
go install github.com/axw/gocov/[email protected] | ||
go install github.com/AlekSi/gocov-xml@latest | ||
go install github.com/jstemmer/go-junit-report/v2@latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.