summaryrefslogtreecommitdiffhomepage
path: root/data/stylish-haskell.yaml
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2019-11-01 20:12:37 -0700
committerSean Whitton <spwhitton@spwhitton.name>2019-11-01 20:12:37 -0700
commitdd0c17ac6c5c34b09b4e79a0fa753745bacfe122 (patch)
tree0d8bf06c82c718504b1398471d9adbbd7dd45aa1 /data/stylish-haskell.yaml
parent15eafc587c41e041194d1c4c84b2b94410a06756 (diff)
parentb67a6ae12f8107b2d1714659f8a121274d5833f9 (diff)
downloadstylish-haskell-dd0c17ac6c5c34b09b4e79a0fa753745bacfe122.tar.gz
Merge tag 'v0.9.4.3'
v0.9.4.3
Diffstat (limited to 'data/stylish-haskell.yaml')
-rw-r--r--data/stylish-haskell.yaml18
1 files changed, 18 insertions, 0 deletions
diff --git a/data/stylish-haskell.yaml b/data/stylish-haskell.yaml
index 6d43499..401d384 100644
--- a/data/stylish-haskell.yaml
+++ b/data/stylish-haskell.yaml
@@ -56,6 +56,18 @@ steps:
# > import qualified Data.List as List (concat, foldl, foldr, head,
# > init, last, length)
#
+ # - with_module_name: Import list is aligned `list_padding` spaces after
+ # the module name.
+ #
+ # > import qualified Data.List as List (concat, foldl, foldr, head,
+ # init, last, length)
+ #
+ # This is mainly intended for use with `pad_module_names: false`.
+ #
+ # > import qualified Data.List as List (concat, foldl, foldr, head,
+ # init, last, length, scanl, scanr, take, drop,
+ # sort, nub)
+ #
# - new_line: Import list starts always on new line.
#
# > import qualified Data.List as List
@@ -229,3 +241,9 @@ newline: native
# language_extensions:
# - TemplateHaskell
# - QuasiQuotes
+
+# Attempt to find the cabal file in ancestors of the current directory, and
+# parse options (currently only language extensions) from that.
+#
+# Default: true
+cabal: true