1
1
mirror of https://github.com/github/semantic.git synced 2024-11-23 16:37:50 +03:00
semantic/.hlint.yaml

52 lines
2.0 KiB
YAML
Raw Normal View History

2018-06-19 16:14:46 +03:00
# HLint configuration file
# https://github.com/ndmitchell/hlint
- arguments: [--color=auto, -XDataKinds, -XDeriveFoldable, -XDeriveFunctor, -XDeriveGeneric, -XDeriveTraversable, -XFlexibleContexts, -XFlexibleInstances, -XMultiParamTypeClasses, -XOverloadedStrings, -XRecordWildCards, -XStandaloneDeriving, -XStrictData, -XTypeApplications]
# Blacklist some functions by default.
- functions:
2018-06-19 16:56:05 +03:00
- {name: unsafePerformIO, within: []}
- {name: unsafeCoerce, within: []}
2018-06-19 16:26:36 +03:00
- {name: head, within: []}
- {name: tail, within: []}
- {name: init, within: []}
- {name: last, within: []}
2018-06-19 16:27:05 +03:00
- {name: fromJust, within: []}
2018-06-19 16:15:14 +03:00
# Replace a $ b $ c with a . b $ c
- group: {name: dollar, enabled: true}
2018-06-19 16:15:26 +03:00
# Generalise map to fmap, ++ to <>
- group: {name: generalise, enabled: true}
2018-06-19 16:15:36 +03:00
# Ignore some builtin hints
- ignore: {name: Use mappend}
- ignore: {name: Redundant do}
2018-06-19 16:30:25 +03:00
- ignore: {name: Use lambda-case} # TODO: investigate whether cost-center analysis is better with lambda-case than it was
2018-06-19 16:30:46 +03:00
- ignore: {name: Use fmap} # Ignored because map has better type inference.
2018-06-19 16:15:50 +03:00
# Change the severity of hints we dont want to fail CI for
- suggest: {name: Eta reduce}
2018-06-19 16:15:50 +03:00
# Our customized warnings
2018-06-19 16:16:56 +03:00
# AMP fallout
- warning: {lhs: mapM, rhs: traverse, name: Generalize mapM}
- warning: {lhs: mapM_, rhs: traverse_, name: Generalize mapM_}
- warning: {lhs: forM, rhs: for, name: Generalize forM}
- warning: {lhs: forM_, rhs: for_, name: Generalize forM_}
- warning: {lhs: sequence, rhs: sequenceA, name: Generalize sequence}
- warning: {lhs: sequence_, rhs: sequenceA_, name: Generalize sequence_}
2018-06-19 16:15:50 +03:00
- warning: {lhs: return, rhs: pure, name: Avoid return}
2018-06-19 16:16:56 +03:00
# Terms
2018-06-19 16:29:13 +03:00
- warning: {lhs: termFAnnotation . unTerm, rhs: termAnnotation, name: Use termAnnotation}
- warning: {lhs: termFOut . unTerm, rhs: termOut, name: Use termOut}
2018-06-19 16:27:58 +03:00
# Conveniences
2018-06-19 16:29:18 +03:00
- warning: {lhs: maybe a pure, rhs: maybeM a, name: Use maybeM}
2018-06-19 16:30:05 +03:00
# Applicative style
- warning: {lhs: f <$> pure a <*> b, rhs: f a <$> b, name: Avoid redundant pure}
- warning: {lhs: f <$> pure a <* b, rhs: f a <$ b, name: Avoid redundant pure}