単体テスト ファイルがあります。
module X04PatMatTest where
import AssertError
import Test.HUnit
import X04PatMat
...
と hlint は不平を言います:
X04PatMatTest.hs:15:69: Warning: Use string literal
Found:
['a', 'b', 'd']
Why not:
"abd"
いろいろな理由から、私はどうしても['a', 'b', 'd']
テストコードを入れたいと思っています。
私はさまざまな順列を試しました
{-# ANN X04PatMatTest "HLint: ignore Warning: Use string literal" #-}
プラグマをファイルの最初の行として、モジュール宣言の後に置き、 のmodule
代わりに名前を付けて、を...X04...
に変更するようなものです。Warning
warn
魔法は何ですか?