How to use exception case in flow-scanner config file? #12
Unanswered
ashishrajbanshi
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I need to use exceptions for certain flows while validating the flow. I tried using exceptions for rules such as UnusedVariables. However, even though I followed this documentation . I was not able to achieve the desired result.
Here is my configuration file.
{ "rules": { "APIVersion":{ "severity": "error", "expression": "60" }, "AutoLayout":{ "severity": "note" }, "FlowDescription": { "severity": "warning" }, "InactiveFlow": { "severity": "warning" }, "UnusedVariable": { "severity": "warning" } }, "exceptions": { "myFlowName": { "UnusedVariable": [ "nameOfVariables" ] } } }
Beta Was this translation helpful? Give feedback.
All reactions