并不总是使用--report-json标志从elm-make接收json消息

时间:2016-07-26 20:46:54

标签: json elm elm-make

我正在尝试使用 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 问题吗?

0 个答案:

没有答案