mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-24 16:10:46 -06:00
11 lines
343 B
Bash
Executable File
11 lines
343 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
|
echo "==> Checking for switch statement exhaustiveness..."
|
|
|
|
# For now we're only checking a handful of packages, rather than defaulting to
|
|
# everything with a skip list.
|
|
go run github.com/nishanths/exhaustive/cmd/exhaustive ./internal/command/views/json
|