Format

Format inputs

Usage: topiary format [OPTIONS] <--language <LANGUAGE>|FILES>

Arguments:
  [FILES]...
          Input files and directories (omit to read from stdin)

          Language detection and query selection is automatic, mapped from file extensions defined
          in the Topiary configuration.

Options:
  -t, --tolerate-parsing-errors
          Consume as much as possible in the presence of parsing errors

  -s, --skip-idempotence
          Do not check that formatting twice gives the same output

  -l, --language <LANGUAGE>
          Topiary language identifier (when formatting stdin)

  -q, --query <QUERY>
          Topiary query file override (when formatting stdin)

  -L, --follow-symlinks
          Follow symlinks (when formatting files)

  -C, --configuration <CONFIGURATION>
          Configuration file

          [env: TOPIARY_CONFIG_FILE]

  -M, --merge-configuration
          Enable merging for configuration files

  -v, --verbose...
          Logging verbosity (increased per occurrence)

  -h, --help
          Print help (see a summary with '-h')

Note
fmt is a recognised alias of the format subcommand.

When formatting inputs from disk, language selection is detected from the input files' extensions. To format standard input, you must specify the --language and, optionally, --query arguments, omitting any input files.

Valid language identifiers, as specified with --language, are defined as part of your Topiary configuration. See the configuration chapter for more details.

Topiary will not accept a process substitution (or any other named pipe) as formatting input. Instead, arrange for a redirection into Topiary's standard input:

# This won't work
topiary format <(some_command)

# Do this instead
some_command | topiary format --language LANGUAGE

Topiary will skip over some input files under certain conditions, which are logged at varying levels:

ConditionLevel
Cannot access fileError
Not a regular file (e.g., FIFO, socket, etc.)Warning
A symlink without --follow-symlinksWarning
File with multiple (hard) linksError
File does not exist (e.g., broken symlink)Error