-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update to fourmolu for formatting and reformat codebase
- Loading branch information
Showing
51 changed files
with
7,589 additions
and
7,041 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
restylers_version: stable | ||
restylers: | ||
- stylish-haskell | ||
- fourmolu: | ||
image: 'restyled/restyler-fourmolu:v0.13.0.0' | ||
arguments: | ||
[] | ||
- hlint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
indentation: 2 | ||
comma-style: leading | ||
record-brace-space: true | ||
indent-wheres: false # 'false' means save space by only half-indenting the 'where' keyword | ||
diff-friendly-import-export: true | ||
let-style: inline | ||
respectful: true | ||
single-constraint-parens: auto | ||
haddock-style: single-line | ||
newlines-between-decls: 1 | ||
reexports: | ||
- module Text.Megaparsec exports Control.Applicative | ||
- module Options.Applicative exports Control.Applicative |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
----------------------------------------------------------------------------- | ||
-- | | ||
-- \| | ||
-- Module : REPL | ||
-- Copyright : disco team and contributors | ||
-- Maintainer : [email protected] | ||
-- | ||
-- SPDX-License-Identifier: BSD-3-Clause | ||
-- | ||
-- A text-based REPL for disco. | ||
-- | ||
----------------------------------------------------------------------------- | ||
|
||
import Disco.Interactive.CmdLine | ||
import Disco.Interactive.CmdLine | ||
|
||
main :: IO () | ||
main = discoMain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.