structstd.Build.Step.Fmt.Options[src]

Fields

paths: []const []const u8 = &.{}
exclude_paths: []const []const u8 = &.{}
check: bool = false

If true, fails the build step when any non-conforming files are encountered.

Source Code

Source code
pub const Options = struct {
    paths: []const []const u8 = &.{},
    exclude_paths: []const []const u8 = &.{},
    /// If true, fails the build step when any non-conforming files are encountered.
    check: bool = false,
}