-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update fourmolu version.
- Loading branch information
Showing
24 changed files
with
1,254 additions
and
1,239 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
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
Submodule concordium-base
updated
144 files
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,12 +1,25 @@ | ||
indentation: 4 # How many spaces to use as an indent. | ||
column-limit: none # We do not set a limit as it may break idempotence. | ||
function-arrows: trailing # Where to place arrows in type signatures. | ||
comma-style: trailing # Where to place commas in lists, tuples, etc. | ||
import-export-style: diff-friendly # How to format multiline import/export lists (diff-friendly lists have trailing commas but keep the opening parenthesis on the same line as import). | ||
record-brace-space: false # rec {x = 1} vs. rec{x = 1}. | ||
indent-wheres: false # 'false' means save space by only half-indenting the 'where' keyword. | ||
record-brace-space: false # rec {x = 1} vs. rec{x = 1}. | ||
newlines-between-decls: 1 # number of newlines between top-level declarations. | ||
haddock-style: single-line # Use -- |, {- |, or {-| for multiline haddocks (single-line haddocks always use --). | ||
let-style: auto # How to style let blocks (auto uses newline if there's a newline in the input and inline otherwise, and mixed uses inline only when the let has exactly one binding). | ||
in-style: left-align # How to align the in keyword with respect to let. | ||
single-constraint-parens: always # Whether to put parentheses round a single constraint | ||
unicode: never | ||
respectful: true # Be less aggressive in reformatting input, e.g. keep empty lines in import list. | ||
fixities: [] # Override fixities of operators. | ||
fixities: # Override fixities of operators. | ||
# This operator is defined in Concordium.Utils. Fourmolu seems to ignore its fixity specification. | ||
- infixr 0 $!! | ||
# Fourmolu incorrectly determines the fixity of operators re-exported in Lens.Micro.Platform. | ||
# We make explicit those that are in Lens.Micro.Mtl, since it does not seem sufficient to | ||
# use a reexport directive. | ||
- infixl 1 &, <&>, &~ | ||
- infixr 2 <~ | ||
- infix 4 .=, ?=, +=, -=, *=, //=, <%=, <.=, <?=, <<%=, <<.= | ||
reexports: | ||
- module Lens.Micro.Platform exports Lens.Micro |
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
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.