We may still want to check for things like tabs, carriage returns, and trailing white space. So perhaps something like the following in the path rules specifier variable: (["webkitpy/thirdparty/"], ["-", # Disable all checks but the following. "+pep8/W191", # No tabs. "+pep8/W291", # No trailing white space. "+whitespace/carriage_return"]),
Created attachment 49703 [details] Proposed patch
Comment on attachment 49703 [details] Proposed patch Nice usage of the path based filter!
(In reply to comment #2) > (From update of attachment 49703 [details]) Thanks for reviewing! I suppose I could also have gotten away with just: -pep8, +pep8/W191, +pep8/W291, but this makes the checked categories explicit.
Comment on attachment 49703 [details] Proposed patch Manually committed (via "git svn dcommit"): http://trac.webkit.org/changeset/55360