-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #583 from IntersectMBO/adjustments-to-formatter
Adjustments to formatter
- Loading branch information
Showing
141 changed files
with
2,492 additions
and
2,279 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
# Stylish-haskell configuration file. | ||
|
||
# Principles: | ||
# | ||
# 1. Amount of indent should not be dependent on the length of the previous line | ||
# 2. Imports lists should be compact | ||
# 3. All linting rules that delete comments should be disabled | ||
# 4. No inline indenting, for example indent of ->, =, <-, as | ||
# 5. Redunant imports and pragmas should be removed | ||
# 6. Consistent syntax | ||
# 7. No trailing whitespaces | ||
# 8. Slightly generous screen width assumed | ||
# 9. All Haskell files in the project are subject to code formatting style | ||
# 10. Import grouping is handled by stylish-haskell | ||
|
||
steps: | ||
# Principle 4 | ||
- simple_align: | ||
cases: false | ||
top_level_patterns: false | ||
# Principle 3 | ||
records: false | ||
|
||
# Import cleanup | ||
- imports: | ||
align: global | ||
|
||
# Principle 1,2 | ||
list_align: with_module_name | ||
|
||
# Principle 4 | ||
pad_module_names: false | ||
|
||
# Principle 2 | ||
long_list_align: inline | ||
|
||
empty_list_align: inherit | ||
|
||
list_padding: 2 | ||
|
||
separate_lists: true | ||
|
||
space_surround: false | ||
|
||
# Principle 10 | ||
group_imports: true | ||
|
||
group_rules: | ||
- match: ^Cardano.Api\> | ||
- match: ^(Cardano|Ouroboros|PlutusCore|PlutusLedgerApi)\> | ||
- match: ^Prelude\> | ||
- match: ^(Control|Codec|Data|Formatting|GHC|Lens|Network|Numeric|Options|Prettyprinter|System|Text)\> | ||
- match: ^(Test.Gen.Cardano.Api)\> | ||
- match: ^(Test.Cardano|Test.Gen.Cardano)\> | ||
- match: ^(Hedgehog|HaskellWorks.Hspec|Test)\> | ||
|
||
- language_pragmas: | ||
style: vertical | ||
|
||
align: false | ||
|
||
# Principle 5 | ||
remove_redundant: true | ||
|
||
# Principle 6 | ||
language_prefix: LANGUAGE | ||
|
||
# Principle 7 | ||
- trailing_whitespace: {} | ||
|
||
# Principle 8 | ||
columns: 100 | ||
|
||
newline: native | ||
|
||
# Principle 9 | ||
# | ||
# These syntax-affecting language extensions are enabled so that | ||
# stylish-haskell wouldn't fail with parsing errors when processing files | ||
# in projects that have those extensions enabled in the .cabal file | ||
# rather than locally. | ||
# | ||
# In particular language extensions with British and American spellings | ||
# that we use should be included here until stylish-haskell supports | ||
# the British spelling. | ||
language_extensions: | ||
- BangPatterns | ||
- ConstraintKinds | ||
- DataKinds | ||
- DefaultSignatures | ||
- DeriveDataTypeable | ||
- DeriveGeneric | ||
- ExistentialQuantification | ||
- FlexibleContexts | ||
- FlexibleInstances | ||
- FunctionalDependencies | ||
- GADTs | ||
- GeneralizedNewtypeDeriving | ||
- LambdaCase | ||
- MultiParamTypeClasses | ||
- MultiWayIf | ||
- OverloadedStrings | ||
- PolyKinds | ||
- RecordWildCards | ||
- ScopedTypeVariables | ||
- StandaloneDeriving | ||
- TemplateHaskell | ||
- TupleSections | ||
- TypeApplications | ||
- TypeFamilies | ||
- ViewPatterns | ||
- ExplicitNamespaces | ||
|
||
cabal: true |
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,5 +1,5 @@ | ||
module Test.Gen.Cardano.Api.Empty where | ||
|
||
import Test.Gen.Cardano.Api () | ||
import Test.Gen.Cardano.Api () | ||
|
||
-- | This module is empty, but it is needed to prevent unused-packages warning |
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
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
17 changes: 10 additions & 7 deletions
17
cardano-api/gen/Test/Gen/Cardano/Api/ProtocolParameters.hs
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.