[QA] add some extra exceptions for module and extensions

This commit is contained in:
Vincent Hanquez 2015-05-02 15:44:53 +01:00
parent 4cde4f9311
commit 9c67e3c133

6
QA.hs
View File

@ -23,6 +23,8 @@ perModuleAllowedExtensions =
[ ("Crypto/Hash/Utils.hs", [MagicHash])
, ("Crypto/Internal/ByteArray.hs", [MagicHash, UnboxedTuples])
, ("Crypto/Internal/Memory.hs", [MagicHash, UnboxedTuples])
, ("Crypto/Internal/Compat.hs", [CPP])
, ("Crypto/Internal/CompatPrim.hs", [CPP,MagicHash])
]
disallowedModules =
@ -46,6 +48,10 @@ perModuleAllowedModules =
[ ModuleName "Data.ByteString"
]
)
, ("Crypto/Internal/Bytes.hs",
[ ModuleName "Data.ByteString"
]
)
]
data Issue =