monogon-dev / intellij-cue

IntelliJ support for the CUE language.
Apache License 2.0
37 stars 3 forks source link

Newlines in list comprehensions marked invalid #65

Open fionera opened 1 year ago

fionera commented 1 year ago

Marked invalid:

    resources: [
        for Name, r in r
        {
            r
        }
    ]

Marked valid:

    resources: [
        for Name, r in r {
            r
        }
    ]