Whenever you rebaseline results, the style bot complains about generated code. e.g, <https://bugs.webkit.org/show_bug.cgi?id=131407>
I think it just needs to include these paths in _SKIPPED_FILES_WITHOUT_WARNING of checker.py
(In reply to comment #1) > I think it just needs to include these paths in _SKIPPED_FILES_WITHOUT_WARNING of checker.py Yes, it can works. But I prefer fixing the generator instead of disabling style checker for these files. I don't like 5-space indentation. :-/
(In reply to comment #2) > (In reply to comment #1) > > I think it just needs to include these paths in _SKIPPED_FILES_WITHOUT_WARNING of checker.py > > Yes, it can works. But I prefer fixing the generator > instead of disabling style checker for these files. > > I don't like 5-space indentation. :-/ The bug isn't in check-webkit-style, but the change in code generator which added 5-space indentation accidentally: https://trac.webkit.org/changeset/165521
(In reply to comment #3) > (In reply to comment #2) > > (In reply to comment #1) > > > I think it just needs to include these paths in _SKIPPED_FILES_WITHOUT_WARNING of checker.py > > > > Yes, it can works. But I prefer fixing the generator > > instead of disabling style checker for these files. > > > > I don't like 5-space indentation. :-/ > > The bug isn't in check-webkit-style, but the change in code generator > which added 5-space indentation accidentally: https://trac.webkit.org/changeset/165521 Created a fix for the code generator: https://bugs.webkit.org/show_bug.cgi?id=131613
Oops, I guess it was my fault all along. Thanks everyone.