pulumi/pkg/cmd/pulumi/schema.go
Pat Gavlin 76ee1b8ccf
[codegen/schema] Add a schema checker (#7865)
- Change the schema package to report semantic errors as diagnostics
  rather than Go errors
- Add a `pulumi schema check` command to the CLI for static checking of
  package schemas

The semantic checker can be extended in the future to add support for
target-specific checks.
2021-08-30 19:29:24 -07:00

36 lines
1.1 KiB
Go

// Copyright 2016-2021, Pulumi Corporation.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/common/util/cmdutil"
"github.com/spf13/cobra"
)
func newSchemaCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "schema",
Short: "Analyze package schemas",
Long: `Analyze package schemas
Subcommands of this command can be used to analyze Pulumi package schemas. This can be useful to check hand-authored
package schemas for errors.`,
Args: cmdutil.NoArgs,
}
cmd.AddCommand(newSchemaCheckCommand())
return cmd
}