我正在尝试为 vs-code 设置 haskell-linter。
我已经使用 cabal 安装了 hlint。山林的位置
~/.cabal/bin/hlint
我还在 VSCode 的 setting.json 中添加了上述路径。
"haskell.hlint.executablePath": "~/.cabal/bin/hlint"
但是在 vs-code 中仍然出现以下错误:
Cannot hlint the haskell file. The hlint program was not found. Use the 'haskell.hlint.executablePath' setting to configure the location of 'hlint'
我正在使用 Mac 操作系统。有人可以帮忙吗?
编辑 1:还尝试添加完整路径,但仍然没有成功。
"haskell.hlint.executablePath": "/Users/ujjwal/.cabal/bin/hlint"