我正在尝试使用 elm-make 的--report=json
功能来接收有关源文件的可解析错误消息。虽然似乎 elm-make 并不总是报告json中的错误,即使使用正确的标志。我尝试将elm-make --report=json Main.elm
与下面的文件
module Main exposing (..)
import Html Fxposing (..)
main : Html
main = text "Test"
Fxposing
上的错误但是没有返回json,它返回下面的消息, flycheck-elm 无法解析。
-- SYNTAX PROBLEM ----------------------------------------------------- Main.elm
I need a fresh line to start a new declaration. This means a new line that
starts with stuff, not with spaces or comments.
3| import Html Fxposing (..)
^
I am looking for one of the following things:
reserved word `as`
reserved word `exposing`
whitespace
这是 elm-make 问题吗?