is it not possible to exclude Forbidden import per...
# detekt
p
is it not possible to exclude Forbidden import per value. For example, I want to do following, but I guess not supported?
Copy code
style:
  ForbiddenImport:
    active: true
    imports:
      - value: com.foo.bar.Something
        reason: "Something is only allowed inside shared/ package"
        excludes: "**/shared/**"