mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-21 10:00:09 -04:00
10 lines
346 B
Bash
Executable file
10 lines
346 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Copyright IBM Corp. 2014, 2026
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
|
|
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 tool github.com/nishanths/exhaustive/cmd/exhaustive ./internal/command/views/json
|