Skip to content

Commit

Permalink
Add panic to operator main
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Ventura committed Oct 17, 2024
1 parent d99244b commit 53c113a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions operator/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ var (
Version string
)

// We use the nolint directive extracted from golangci-lint to supress linting
// -> https://github.com/golangci/golangci-lint/blob/master/docs/src/docs/usage/false-positives.mdx#nolint-directive
//
//nolint:all
func main() {
panic("THIS IS THE PANIC IN MAIN")
app := &cli.App{
Name: "Aligned Layer Node Operator",
Commands: []*cli.Command{
Expand Down

0 comments on commit 53c113a

Please sign in to comment.