Re-organize test rules

This commit is contained in:
Jeroen Engels 2020-04-03 15:53:44 +02:00
parent 19f35f835f
commit ec4044826b
6 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
module Review.Rule.NoExtraBooleanComparison exposing (rule) module NoExtraBooleanComparison exposing (rule)
{-| Forbid the use of boolean comparisons that can be simplified. {-| Forbid the use of boolean comparisons that can be simplified.

View File

@ -1,6 +1,6 @@
module NoExtraBooleanComparisonTest exposing (all) module NoExtraBooleanComparisonTest exposing (all)
import Review.Rule.NoExtraBooleanComparison exposing (rule) import NoExtraBooleanComparison exposing (rule)
import Review.Test exposing (ReviewResult) import Review.Test exposing (ReviewResult)
import Test exposing (Test, describe, test) import Test exposing (Test, describe, test)

View File

@ -1,4 +1,4 @@
module Review.Rule.NoImportingEverything exposing (rule, Configuration) module NoImportingEverything exposing (rule, Configuration)
{-| Forbid importing everything from a module. {-| Forbid importing everything from a module.

View File

@ -1,6 +1,6 @@
module NoImportingEverythingTest exposing (all) module NoImportingEverythingTest exposing (all)
import Review.Rule.NoImportingEverything exposing (Configuration, rule) import NoImportingEverything exposing (Configuration, rule)
import Review.Test exposing (ReviewResult) import Review.Test exposing (ReviewResult)
import Test exposing (Test, describe, test) import Test exposing (Test, describe, test)

View File

@ -1,4 +1,4 @@
module Review.Rule.NoUnusedTypeConstructors exposing (rule) module NoUnusedTypeConstructors exposing (rule)
{-| Forbid having unused custom type constructors in a file. {-| Forbid having unused custom type constructors in a file.

View File

@ -1,6 +1,6 @@
module NoUnusedTypeConstructorsTest exposing (all) module NoUnusedTypeConstructorsTest exposing (all)
import Review.Rule.NoUnusedTypeConstructors exposing (rule) import NoUnusedTypeConstructors exposing (rule)
import Review.Test exposing (ReviewResult) import Review.Test exposing (ReviewResult)
import Test exposing (Test, describe, test) import Test exposing (Test, describe, test)