blob: cefc9a9690bdb7a8694d35bf76dc502a2fb247d7 [file] [log] [blame]
# ignore certain errors for cue fmt
cue fmt x.cue
# Issue #644
cue fmt ./...
cmp x.cue out/x_cue
-- cue.mod/module.cue --
module: "example.com/x"
-- x.cue --
package x
import "blah.com/rubbish"
x: 5
y: unresolved
-- out/x_cue --
package x
import "blah.com/rubbish"
x: 5
y: unresolved