elm-review/tests/Lint/Rule/NoImportingEverything.elm

103 lines
3.0 KiB
Elm
Raw Normal View History

2019-06-03 01:30:24 +03:00
module Lint.Rule.NoImportingEverything exposing (rule, Configuration)
{-| Forbid importing everything from a module.
2019-06-03 01:30:24 +03:00
2019-07-03 15:19:29 +03:00
# Rule and configuration
@docs rule, Configuration
2019-06-03 01:30:24 +03:00
-}
import Elm.Syntax.Exposing as Exposing
import Elm.Syntax.Import exposing (Import)
import Elm.Syntax.Node as Node exposing (Node)
import Elm.Syntax.Range exposing (Range)
2019-06-26 14:47:00 +03:00
import Lint.Rule as Rule exposing (Error, Rule)
2019-06-03 01:30:24 +03:00
import Lint.Util as Util
{-| Configuration for the rule.
-}
type alias Configuration =
{ exceptions : List String }
{-| Forbid importing everything from a module. Doing so can be confusing,
especially to newcomers when the exposed functions and types are unknown to them.
2019-06-03 01:30:24 +03:00
A preferred pattern is to import functions by name (`import Html exposing (div, span)`)
or using qualified imports (`import Html`, then `Html.div`). If the module name
is too long, don't forget that you can do qualified imports using an alias
(`import Html.Attributes as Attr`).
2019-06-03 01:30:24 +03:00
You can make exceptions for some modules by adding them to the `exceptions`
field, like `{ exceptions = [ "Html", "Html.Attributes" ] }`. The name should be
the exact name of the import. Allowing importing everything from `Html` will not
allow the same thing for `Html.Events`, unless explicitly specified.
config =
2019-07-25 15:35:58 +03:00
[ NoImportingEverything.rule { exceptions = [] }
]
## Fail
import Html exposing (..)
## Success
2019-07-25 15:35:58 +03:00
-- NoImportingEverything.rule { exceptions = [] }
import Html exposing (div, p, textarea)
2019-07-25 15:35:58 +03:00
-- NoImportingEverything.rule { exceptions = [ "Html" ] }
import Html exposing (..)
# When not to use this rule
If you prefer importing most of your modules using `exposing (..)`, then you
should not use this rule.
2019-06-03 01:30:24 +03:00
-}
rule : Configuration -> Rule
2019-06-15 22:14:40 +03:00
rule config =
Rule.newSchema "NoImportingEverything"
|> Rule.withSimpleImportVisitor (importVisitor config)
2019-06-24 01:32:27 +03:00
|> Rule.fromSchema
2019-06-03 01:30:24 +03:00
error : Range -> String -> Error
error range name =
Rule.error
{ message = "Do not expose everything from " ++ name
, details =
2019-07-28 15:45:09 +03:00
[ "Exposing `(..)` from a module means making all its exposed functions and types available in the file's namespace. This makes it hard to tell which module a function or type comes from."
, "A preferred pattern is to import functions by name (`import Html exposing (div, span)`) or to use qualified imports (`import Html`, then `Html.div`). If the module name is too long, you can give an alias to the imported module (`import Html.Attributes as Attr`)."
]
}
range
2019-06-03 01:30:24 +03:00
importVisitor : Configuration -> Node Import -> List Error
importVisitor config node =
2019-06-03 01:30:24 +03:00
let
{ moduleName, exposingList } =
Node.value node
name : String
name =
Util.moduleName moduleName
in
if List.member name config.exceptions then
[]
2019-06-03 01:30:24 +03:00
else
case exposingList |> Maybe.map Node.value of
Just (Exposing.All range) ->
[ error range name ]
2019-06-03 01:30:24 +03:00
_ ->
[]