Closed
Description
I'm running CFLint against a codebase and want to exclude some directory structures from being scanned.
Let's say I'm scanning against /a and the full structure is /a/b/c/d
So, I put a .cflintrc into /a/b/c with this content:
{
"output" : [ ],
"rule" : [ ],
"excludes" : [ ],
"includes" : [ ],
"inheritParent" : false,
"inheritPlugins" : true
}
expecting to not get any of the overall rules of the CFLint execution in a/b/c and a/b/c/d because I switched off inheriting. Excluding/Including is not specified either - so I'd think that nothing should run here.
Nevertheless, I still get MISSING_SEMIs and others in those directories.