Skip to content

Latest commit

 

History

History
96 lines (65 loc) · 5.09 KB

command-usage.md

File metadata and controls

96 lines (65 loc) · 5.09 KB

Command Usage

The yamlfmt command supports 3 primary modes of operation and a number of command line configuration options.

Basic Usage

The most basic usage of the yamlfmt command is to use the default configuration and provide a single path to format.

yamlfmt x.yaml

You can also provide a directory path, which yamlfmt will search recursively through for any file with a yml or yaml extension.

yamlfmt .

You can make use of the alternative Doublestar path mode for more dyanmic patterns.

yamlfmt -dstar "**/*.yaml"

(Technically, providing the same pattern in bash without quotes in standard path mode will do standard bash glob expansion and work similarly.)

See Specifying Paths for more details about the path collection behaviour.

Three Modes of Operation

The command supports three modes of operation: Format, Lint, and Dry Run.

Format

This is the default operation (no flag specified). It will collect all paths that match the include patterns and run them straight through formatting, rewriting each file with the results.

Format stdin

This mode will read input from stdin and output formatted result to stdout. By using the paths -, /dev/stdin, or using the -in flag, yamlfmt will only read from stdin and write the result to stdout.

cat x.yaml | yamlfmt -
cat x.yaml | yamlfmt /dev/stdin
cat x.yaml | yamlfmt -in

(Despite /dev/stdin and - being Linux/Bash standards, this convention was manually implemented in a cross-platform way. It will function identically on Windows. Would you want to use the Linux standards like this on Windows? I don't know, but it will work 😄)

Dry Run

This mode is enabled through the -dry flag. This will collect all paths that match the include patterns and run them through formatting, printing each file that had a formatting diff to stdout. This mode is affected by the -quiet flag, where only the paths of the files with diffs will be printed.

Lint

This mode is enabled through the -lint flag. This will collect all paths that match the include patterns and run them through formatting, and will exit with code 1 (fail) if any files have formatting differences, outputting the diffs to stdout. This mode is also affected by the -quiet flag, where only the paths of the files with diffs will be printed.

Flags

All flags must be specified before any path arguments.

Operation Flags

These flags adjust the command's mode of operation. All of these flags are booleans.

Name Flag Example Description
Help -help yamlfmt -help Print the command usage information.
Dry Run -dry yamlfmt -dry . Use Dry Run mode
Lint -lint yamlfmt -lint . Use Lint mode
Quiet Mode -quiet yamlfmt -dry -quiet . Use quiet mode. Only has effect in Dry Run or Lint modes.
Read Stdin -in `cat x.yaml yamlfmt -in`

Configuration Flags

These flags will configure the underlying behaviour of the command.

The string array flags can be a bit confusing. See the String Array Flags section for more information.

Name Flag Type Example Description
Config File Path -conf string yamlfmt -conf ./config/.yamlfmt Specify a path to read a configuration file from.
Doublstar -dstar boolean yamlfmt -dstar "**/*.yaml" Enable Doublstar path collection mode.
Exclude -exclude []string yamlfmt -exclude ./not/,these_paths.yaml Patterns to exclude from path collection. These add to exclude patterns specified in the config file
Extensions -extensions []string yamlfmt -extensions yaml,yml Extensions to use in standard path collection. Has no effect in Doublestar mode. These add to extensions specified in the config file
Formatter Config -formatter []string yamlfmt -formatter indent=2,include_document_start=true Provide configuration values for the formatter. See Formatter Configuration Options for options. Each field is specified as configkey=value.

String Array Flags

String array flags can be provided in two ways. For example with a flag called -arrFlag:

  • Individual flags
    • -arrFlag a -arrFlag b -arrFlag c
    • Result: arrFlag: [a b c]
  • Comma separated value in single flag
    • -arrFlag a,b,c
    • Result: arrFlag: [a b c]
  • Technically they can be combined but why would you?
    • -arrFlag a,b -arrFlag c
    • Result: arrFlag: [a b c]