TMP: Add import exeptions

This commit is contained in:
Jeroen Engels 2019-07-03 18:26:53 +02:00
parent 40cd1ed5ed
commit 3b5c187574

View File

@ -51,6 +51,7 @@ type alias Model =
, noDebugEnabled : Bool
, noUnusedVariablesEnabled : Bool
, noImportingEverythingEnabled : Bool
, noImportingEverythingExceptions : List String
, defaultPatternPositionEnabled : Bool
, defaultPatternPositionPattern : PatternPosition
, noExtraBooleanComparisonEnabled : Bool
@ -83,6 +84,7 @@ g n = n + 1
, noDebugEnabled = True
, noUnusedVariablesEnabled = True
, noImportingEverythingEnabled = True
, noImportingEverythingExceptions = [ "Html", "Html.Attributes" ]
, defaultPatternPositionEnabled = True
, defaultPatternPositionPattern = DefaultPatternPosition.ShouldBeLast
, noExtraBooleanComparisonEnabled = True