I like automated checks on my codebase to make sure I'm not violating style guidelines. When I worked in Perl, I would use Perl::Critic to check my style, and Test::Perl::Critic::Progressive to grandfather in any existing violations, so I could apply it to existing codebases.
Now I find myself on a PHP project. PHP CodeSniffer seems like the tool of choice in the community, but I don't see any sort of progressive mode on it.
Is There a "Progressive" mode for any PHP Style checker?
("Progressive" checking first captures a list of all existing violations, then prevents them from showing up in subsequent check runs. This means that existing violations are allowed to stay, but new ones are not allowed to be added.)