1
1
mirror of https://github.com/google/ormolu.git synced 2024-09-17 11:17:38 +03:00
Go to file
Basile Henry b2024bfc3d Use different exit codes for different exceptions
We map every Ormulu exception to a different exit code so that they can
easily be differentiated from a shell script.
2019-06-19 21:28:22 +02:00
.circleci Skip pushing to cachix when the required context is not provided 2019-06-05 20:27:46 +02:00
app Implement more precise comment placement without ‘ghc-exactprint’ 2019-05-08 22:03:21 +02:00
data [#53] Implement rendering for foreign declarations 2019-06-19 21:20:19 +02:00
nix/nixpkgs Build the project with Nix and switct to GHC 8.6.4 2019-05-31 14:43:15 +02:00
src Use different exit codes for different exceptions 2019-06-19 21:28:22 +02:00
tests Make test suite failures a bit more readable 2019-06-09 15:03:55 +02:00
.gitignore Initial commit 2018-11-25 20:51:22 +07:00
CHANGELOG.md Initial commit 2018-11-25 20:51:22 +07:00
CONTRIBUTING.md Add ‘CONTRIBUTING.md’ file to the repository 2019-05-31 16:09:35 +02:00
default.nix Build the project with Nix and switct to GHC 8.6.4 2019-05-31 14:43:15 +02:00
DESIGN.md Minor corrections to the design document 2019-02-14 22:12:13 +01:00
EXAMPLES.md Add examples of comments. 2019-01-08 12:37:42 -03:00
LICENSE.md Fix the link to license file and years there 2019-05-23 19:57:32 +02:00
ormolu.cabal [#53] Implement rendering for foreign declarations 2019-06-19 21:20:19 +02:00
README.md Add ‘CONTRIBUTING.md’ file to the repository 2019-05-31 16:09:35 +02:00
Setup.hs Initial commit 2018-11-25 20:51:22 +07:00

Ormolu

CircleCI

Ormolu is a formatter for Haskell source code. The projects was created with the following features in mind:

  • Using GHC's own parser to avoid parsing problems caused by haskell-src-exts.
  • Let some whitespace be programmable. The layout of the input influence the layout choices in the output. This means that the choices between single-line/multi-line layouts in each particular situation are made by the user, not by an algorithm. This makes the implementation simpler and leaves some control to the user while still guaranteeing that the formatted code is stylistically consistent.
  • Writing code in such a way so it's easy to modify and maintain. Roughly, it means that the project follows the path of hindent and is very much about printing AST in a particular way.
  • Implementing one “true” formatting style which admits no configuration.
  • That formatting style aims to result in minimal diffs while still remaining very close to “conventional” Haskell formatting people use.
  • Idempotency: formatting already formatted code doesn't change it.
  • Be well-tested and robust to the point that it can be used in large projects without exposing unfortunate, disappointing bugs here and there.

Building

The easiest way to build the project is with Nix:

$ nix-build

Or with cabal-install from the Nix shell:

$ nix-shell --run "cabal new-build"

Alternatively, stack could be used with a stack.yaml file as follows.

$ cat stack.yaml
resolver: lts-13.19
packages:
- '.'

$ stack build

Usage

The following will print the formatted output to the standard output.

$ ormolu Module.hs

Add --mode inplace to replace the contents of the input file with the formatted output.

$ ormolu --mode inplace Module.hs

A configuration file can specify the language extensions to use by default.

$ cat ormolu.yaml
ghc-opts:
  - -XLambdaCase
unsafe: False
debug: False

$ ormolu -c ormolu.yaml Module.hs

Contributing

See CONTRIBUTING.md.

License

See LICENSE.md.

Copyright © 20182019 Tweag I/O