1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
= stylish-haskell(1)
== NAME
stylish-haskell - simple Haskell code prettifier
== SYNOPSIS
*stylish-haskell* [_-c_|_--config=FILE_] [_-v|--verbose_]
[_-i_|_--inplace_] [--no-utf8] [_FILES_]...
*stylish-haskell* _-d_|_--defaults_
*stylish-haskell* _-?_|_--help_
*stylish-haskell* _--version_
== DESCRIPTION
*stylish-haskell* performs automatic formatting on the Haskell code in
the files passed on the command line or piped via STDIN. It outputs to
STDOUT unless *-i* is specified.
STDIN is assumed to be encoded UTF-8, unless the *--no-utf8* option is
used.
=== OPTIONS
*-c*, *--config=FILE*::
Override the default configuration file.
*-v*, *--verbose*::
Turn on verbose output.
*-i*, *--inplace*::
Prettify and overwrite the given files in place.
*-d*, *--defaults*::
Dump default config and exit.
*-?*, *--help*::
Output help text and exit.
*--version*::
Output version information and exit.
*--no-utf8*::
Don't assume that STDIN is encoded UTF-8, and don't force UTF-8 output.
== AUTHOR
This manual page was originally written by Sean Whitton
<\spwhitton@spwhitton.name> for the Debian GNU/Linux system (but may be
used by others).
|