
brittany
List of commands for brittany:
-
brittany:tldr:1ed4f brittany: Format a Haskell source file using the specified amount of spaces per indentation level and line length.$ brittany --indent ${4} --columns ${100} ${filename-hs}try on your machineexplain this command
-
brittany:tldr:91970 brittany: Check whether a Haskell source file needs changes and indicate the result through the programme's exit code.$ brittany --check-mode ${filename-hs}try on your machineexplain this command
-
brittany:tldr:c8cf4 brittany: Format a Haskell source file and print the result to `stdout`.$ brittany ${filename-hs}try on your machineexplain this command
-
brittany:tldr:ea778 brittany: Format all Haskell source files in the current directory in-place.$ brittany --write-mode=inplace ${*-hs}try on your machineexplain this command
-
brittany:tldr:f886f brittany: Format a Haskell source file according to the style defined in the specified config file.$ brittany --config-file ${path-to-config-yaml} ${filename-hs}try on your machineexplain this command