diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-10-20 11:11:05 +0200 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-11-07 09:50:52 +0100 |
commit | 8c6ab0cbb68ef2deaf575b0eb341fd6c652e1848 (patch) | |
tree | 9841ae37f556942f9774a76d9a42d0a1fc23b47a /.hlint.yaml | |
parent | 8030de438d98732fda5c8681fc5afe4cdea71562 (diff) |
add hlint
Diffstat (limited to '.hlint.yaml')
-rw-r--r-- | .hlint.yaml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.hlint.yaml b/.hlint.yaml new file mode 100644 index 0000000..eec7d60 --- /dev/null +++ b/.hlint.yaml @@ -0,0 +1,9 @@ +- modules: + - name: [Data.Text, Data.Text.Encoding, Data.Text.IO] + as: "T" + importStyle: "qualified" + qualifiedStyle: "post" + - name: [Data.Text.Lazy, Data.Text.Lazy.Encoding, Data.Text.Lazy.IO] + as: "LT" + importStyle: "qualified" + qualifiedStyle: "post" |