File tree Expand file tree Collapse file tree 2 files changed +216
-212
lines changed
Expand file tree Collapse file tree 2 files changed +216
-212
lines changed Original file line number Diff line number Diff line change 11lintcue :
22 @echo " > Linting CUE schema ..."
3- @cue eval schema.cue --all-errors --verbose
3+ @cue vet . --all-errors --verbose
44
55lintyml :
66 @echo " > Linting YAML files ..."
77 @echo " > Linting .github/security-insights.yml ..."
8- @cue vet . github/security-insights.yml schema.cue
8+ @cue vet -d ' #SecurityInsights ' . . github/security-insights.yml
99 @echo " > Linting template-full.yml ..."
10- cue vet template-full.yml schema.cue
10+ cue vet -d ' #SecurityInsights ' . template-full.yml
1111 @echo " > Linting template-minimum.yml ..."
12- cue vet template-minimum.yml schema.cue
12+ cue vet -d ' #SecurityInsights ' . template-minimum.yml
1313 @echo " > Linting template-multi-repository-project-reuse.yml ..."
14- cue vet template-multi-repository-project-reuse.yml schema.cue
14+ cue vet -d ' #SecurityInsights ' . template-multi-repository-project-reuse.yml
1515 @echo " > Linting template-multi-repository-project.yml ..."
16- cue vet template-multi-repository-project.yml schema.cue
16+ cue vet -d ' #SecurityInsights ' . template-multi-repository-project.yml
1717
1818cuegen :
1919 @echo " > Generating types from cue schema ..."
2020 @cue exp gengotypes schema.cue
2121 @echo " > vet the generated go types ..."
2222 @go vet cue_types_gen.go
2323
24- PHONY : lintcue lintyml cuegen
24+ PHONY : lintcue lintyml cuegen
You can’t perform that action at this time.
0 commit comments