Report variables or types that are declared or imported but never used inside of a module.
rule : Review.Rule.Rule
Report variables or types that are declared or imported but never used.
config =
[ NoUnused.Variables.rule
]
module A exposing (a)
a n =
n + 1
b =
a 2
module A exposing (a)
a n =
n + 1