Open
Description
As it is, it's tricky to debug certain codebase structures. In my case, i have the following:
/app <-- should be checked
/vendor
/foo <-- should NOT be checked
/bar <-- should NOT be checked
/baz <-- should NOT be checked
/mypackage <-- SHOULD be checked
/quux <-- should NOT be checked
What I'd really like to be able to do is something like this:
<ruleset>
<exclude-pattern>/vendor/*</exclude-pattern>
<include-pattern>/vendor/mypackage/*</include-pattern>
…
</ruleset>