mirror of
https://github.com/jfmengels/elm-review.git
synced 2024-11-05 05:31:12 +03:00
73 lines
1.4 KiB
Elm
73 lines
1.4 KiB
Elm
module NoFullyAppliedPrefixOperator exposing (rule)
|
|
|
|
{-|
|
|
|
|
@docs rule
|
|
|
|
-}
|
|
|
|
import Elm.Syntax.Expression as Expression exposing (Expression)
|
|
import Elm.Syntax.Node as Node exposing (Node)
|
|
import Elm.Syntax.Range exposing (Range)
|
|
import Review.Rule as Rule exposing (Error, Rule)
|
|
|
|
|
|
{-| Reports when an operator is used as a prefix operator and all the operands are already given.
|
|
|
|
config =
|
|
[ NoFullyAppliedPrefixOperator.rule
|
|
]
|
|
|
|
|
|
## Fail
|
|
|
|
_ =
|
|
(+) 1 2
|
|
|
|
|
|
## Success
|
|
|
|
_ =
|
|
1 + 2
|
|
|
|
_ =
|
|
(+) 1
|
|
|
|
_ =
|
|
(+)
|
|
|
|
|
|
## Try it out
|
|
|
|
You can try this rule out by running the following command:
|
|
|
|
```bash
|
|
elm-review --template jfmengels/elm-review-simplification/example --rules NoFullyAppliedPrefixOperator
|
|
```
|
|
|
|
-}
|
|
rule : Rule
|
|
rule =
|
|
Rule.newModuleRuleSchema "NoFullyAppliedPrefixOperator" ()
|
|
|> Rule.withSimpleExpressionVisitor expressionVisitor
|
|
|> Rule.fromModuleRuleSchema
|
|
|
|
|
|
error : Range -> Error {}
|
|
error range =
|
|
Rule.error
|
|
{ message = "Prefer using the infix form (`a + b`) over the prefix form (`(+) a b`) when possible"
|
|
, details = [ "The prefix form is generally harder to read over the infix form." ]
|
|
}
|
|
range
|
|
|
|
|
|
expressionVisitor : Node Expression -> List (Error {})
|
|
expressionVisitor node =
|
|
case Node.value node of
|
|
Expression.Application [ Node.Node range (Expression.PrefixOperator _), _, _ ] ->
|
|
[ error range ]
|
|
|
|
_ ->
|
|
[]
|