pint.ok --no-color lint rules
! stdout .
cmp stderr stderr.txt

-- stderr.txt --
level=info msg="Loading configuration file" path=.pint.hcl
-- rules/0001.yml --
- alert: Instance Is Down 1
  expr: up == 0
  annotations:
    annotation_foo: bar
    annotation_bar: bar

-- .pint.hcl --
parser {
  relaxed = [".*"]
}
rule {
  annotation "annotation_.*" {
    required = true
    value    = "bar"
    severity = "bug"
  }
}