mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-23 15:40:07 -06:00
cb2e9119aa
Signed-off-by: namgyalangmo <75657887+namgyalangmo@users.noreply.github.com>
13 lines
420 B
Bash
Executable File
13 lines
420 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) The OpenTofu Authors
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
# Copyright (c) 2023 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
|