summaryrefslogtreecommitdiff
path: root/deps/irc-conduit/.stylish-haskell.yaml
blob: 2d3ca442f828257ecbf9e782e057c7cfc27ca543 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# stylish-haskell configuration file
# https://github.com/jaspervdj/stylish-haskell
##########################

steps:
  # Import cleanup
  - imports:
      # Align the import names and import list throughout the entire
      # file.
      align: global

      # Import list is aligned with end of import including 'as' and
      # 'hiding' keywords.
      #
      #   > import qualified Data.List      as List (concat, foldl, foldr, head,
      #   >                                          init, last, length)
      list_align: after_alias

      # Put as many import specs on same line as possible.
      long_list_align: inline

      # () is right after the module name:
      #
      #   > import Vector.Instances ()
      empty_list_align: right_after

      # Align import list on lines after the import under the start of
      # the module name.
      list_padding: module_name

      # There is no space between classes and constructors and the
      # list of it's members.
      #
      #   > import Data.Foldable (Foldable(fold, foldl, foldMap))
      separate_lists: false

  # Language pragmas
  - language_pragmas:
      # Vertical-spaced language pragmas, one per line.
      style: vertical

      # Brackets are not aligned together. There is only one space
      # between actual import and closing bracket.
      align: false

      # Remove redundant language pragmas.
      remove_redundant: true

  # Remove trailing whitespace
  - trailing_whitespace: {}

# Maximum line length, used by some of the steps above.
columns: 80

# Convert newlines to LF ("\n").
newline: lf