# 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
