Configuration
Example Configuration
{
// Optional: restrict analysis scope (workspace‑relative globs)
"include": [ "src/**" ],
"exclude": [ "coldbox/**", "modules/**" ],
// Rule customization
"diagnostics": {
"unscopedVariable": {
"enabled": true,
"severity": "warning"
},
"unusedVariable": {
"enabled": true,
"severity": "hint"
}
}
}Last updated
Was this helpful?