for more information visit the package's GitHub page
Package contains the following modules:
Provides elm-review
rules to forbid the use of import aliases.
NoImportAs
- Reports the use of import aliases.module ReviewConfig exposing (config)
import NoImportAs
import Review.Rule exposing (Rule)
config : List Rule
config =
[ NoImportAs.rule
]