Versions |
0.8.0.2, 0.8.0.3, 0.9.0.0, 0.9.0.1, 0.10.0.0, 0.11.0.0, 0.12.0.0, 0.12.0.0, 0.12.1.0, 0.12.1.1, 0.12.2.0, 0.13.0.0, 0.13.1.0, 0.13.1.1, 0.13.1.2, 0.14.0.0, 0.14.0.1, 0.14.0.2 |
Change log |
ChangeLog.md |
Dependencies |
aeson (>=1.0.1.0 && <1.5), base (>=4.9 && <4.13), brittany, butcher (>=1.3.1 && <1.4), bytestring (>=0.10.8.1 && <0.11), cmdargs (>=0.10.14 && <0.11), containers (>=0.5.7.1 && <0.7), czipwith (>=1.0.1.0 && <1.1), data-tree-print, deepseq (>=1.4.2.0 && <1.5), directory (>=1.2.6.2 && <1.4), extra (>=1.4.10 && <1.7), filepath (>=1.4.1.0 && <1.5), ghc (>=8.0.1 && <8.7), ghc-boot-th (>=8.0.1 && <8.7), ghc-exactprint (>=0.5.8 && <0.6.2), ghc-paths (>=0.1.0.9 && <0.2), monad-memo (>=0.4.1 && <0.6), mtl (>=2.2.1 && <2.3), multistate (>=0.7.1.1 && <0.9), neat-interpolation (>=0.3.2 && <0.4), pretty (>=1.1.3.3 && <1.2), random (>=1.1 && <1.2), safe (>=0.3.9 && <0.4), semigroups (>=0.18.2 && <0.19), strict (>=0.3.2 && <0.4), syb (>=0.6 && <0.8), text (>=1.2 && <1.3), transformers (>=0.5.2.0 && <0.6), uniplate (>=1.6.12 && <1.7), unsafe (>=0.0 && <0.1), yaml (>=0.8.18 && <0.12) [details] |
License |
AGPL-3.0-only |
Copyright |
Copyright (C) 2016-2019 Lennart Spitzner
Copyright (C) 2019 PRODA LTD |
Author |
Lennart Spitzner |
Maintainer |
Lennart Spitzner <hexagoxel@hexagoxel.de> |
Category |
Language |
Home page |
https://github.com/lspitzner/brittany/
|
Bug tracker |
https://github.com/lspitzner/brittany/issues
|
Source repo |
head: git clone https://github.com/lspitzner/brittany.git |
Uploaded |
by lspitzner at 2019-06-19T08:40:28Z |
brittany
haskell source code formatter
(see more examples and comparisons)
This project's goals roughly are to:
- Always retain the semantics of the source being transformed;
- Be idempotent;
- Support the full GHC-haskell syntax including syntactic extensions
(but excluding
-XCPP
which is too hard);
- Retain newlines and comments unmodified;
- Be clever about using the available horizontal space while not overflowing
the column maximum if it cannot be avoided;
- Be clever about aligning things horizontally (this can be turned off
completely however);
- Have linear complexity in the size of the input.
In theory, the core algorithm inside brittany reaches these goals. It is rather
clever about making use of horizontal space while still being linear in the
size of the input (although the constant factor is not small). See
these examples of clever layouting.
But brittany is not finished yet, and there are some open issues that yet
require fixing:
- only the module header (imports/exports), type-signatures and
function/value bindings are processed;
other module elements (data-decls, classes, instances, etc.)
are not transformed in any way; this extends to e.g. bindings inside class
instance definitions - they won't be touched (yet).
- By using
ghc-exactprint
as the parser, brittany supports full GHC
including extensions, but some of the less common syntactic elements
(even of 2010 haskell) are not handled.
- There are some known issues regarding handling of in-source comments.
There are cases where comments are not copied to the output (this will
be detected and the user will get an error); there are other cases where
comments are moved slightly; there are also cases where comments result in
wonky newline insertion (although this should be a purely aesthetic issue.)
Try without Installing
You can paste haskell code over here
to test how it gets formatted by brittany. (Rg. privacy: the server does
log the size of the input, but not the full input/output of requests.)
Other usage notes
- Supports GHC versions
8.0
, 8.2
, 8.4
, 8.6
.
- included in stackage with lts>=10.0 (or nightlies dating to >=2017-11-15)
- config (file) documentation is lacking.
- some config values can not be configured via commandline yet.
- uses/creates user config file in
~/.config/brittany/config.yaml
;
also reads (the first) brittany.yaml
found in current or parent
directories.
Installation
-
via stack
stack install brittany # --resolver lts-10.0
If you use an lts that includes brittany this should just work; otherwise
you may want to clone the repo and try again (there are several stack.yamls
included).
-
via nix
:
nix build -f release.nix # or 'nix-build -f release.nix'
nix-env -i ./result
-
via cabal v1-build
# optionally:
# mkdir brittany
# cd brittany
# cabal sandbox init
cabal install brittany --bindir=$HOME/.cabal/bin # -w $PATH_TO_GHC_8_x
-
via cabal v2-install
cabal v2-install brittany
-
via cabal v2-build
, should v2-install not work:
cabal unpack brittany
cd brittany-0.11.0.0
# cabal new-configure -w $PATH_TO_GHC_8_x
cabal new-build exe:brittany
# and it should be safe to just copy the executable, e.g.
cp `find dist-newstyle/ -name brittany -type f | xargs -x ls -t | head -n1` $HOME/.cabal/bin/
-
on ArchLinux via the brittany AUR package
using aura
:
aura -A brittany
Editor Integration
Sublime text
In this gist
I have described a haskell setup that includes a shortcut to run brittany formatting.
VSCode
This extension
connects commandline brittany
to VSCode formatting API. Thanks to @MaxGabriel.
Via HIE
haskell-ide-engine
includes a brittany
plugin that directly uses the brittany library.
Relevant for any editors that properly support the language-server-protocol.
Neovim / Vim 8
The Neoformat plugin comes with support for
brittany built in.
Atom
Atom Beautify supports brittany as a formatter for Haskell. Since the default formatter is set to hindent, you will need to change this setting to brittany, after installing the extension.
Emacs
format-all support brittany as the default formatter for Haskell.
Usage
-
Default mode of operation: Transform a single module, from stdin
to stdout
.
Can pass one or multiple files as input, and there is a flag to override them
in place instead of using stdout
(since 0.9.0.0). So:
brittany # stdin -> stdout
brittany mysource.hs # ./mysource.hs -> stdout
brittany --write-mode=inplace *.hs # apply formatting to all ./*.hs inplace
-
For stdin/stdout usage it makes sense to enable certain syntactic extensions
by default, i.e. to add something like this to your
~/.config/brittany/config.yaml
(execute brittany
once to create default):
conf_forward:
options_ghc:
- -XLambdaCase
- -XMultiWayIf
- -XGADTs
- -XPatternGuards
- -XViewPatterns
- -XRecursiveDo
- -XTupleSections
- -XExplicitForAll
- -XImplicitParams
- -XQuasiQuotes
- -XTemplateHaskell
- -XBangPatterns
Feature Requests, Contribution, Documentation
For a long time this project has had a single maintainer, and as a consequence
there have been some mildly large delays for reacting to feature requests
and even PRs.
Sorry about that.
The good news is that this project is getting sponsored by PRODA LTD, and two
previous contributors, Evan Borden and Taylor Fausak, have agreed on helping
with organisational aspects. Thanks!
Still, this project has a long queue of very sensible feature requests, so it
may take some time until new ones get our attention. But with the help of
the co-maintainers, at least the reaction-times on PRs and the frequency
of releases should improve significantly.
If you are interested in making your own contributions, there is
a good amount of high-level documentation at
the documentation index
License
Copyright (C) 2016-2019 Lennart Spitzner
Copyright (C) 2019 PRODA LTD
This program is free software: you can redistribute it and/or modify
it under the terms of the
GNU Affero General Public License, version 3,
as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see http://www.gnu.org/licenses/.