Changeset 209902 in webkit


Ignore:
Timestamp:
Dec 15, 2016 7:35:54 PM (7 years ago)
Author:
dbates@webkit.org
Message:

check-style should not complain about code in icu directories
https://bugs.webkit.org/show_bug.cgi?id=53929

Reviewed by Darin Adler.

Skip style checking of imported ICU headers to avoid a deluge of style issues
as they do not conform to the WebKit Code Style guideline. We want to preserve
the formatting of these headers so as to make it straightforward to merge
changes to them, if necessary.

  • Scripts/webkitpy/style/checker.py:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r209894 r209902  
     12016-12-15  Daniel Bates  <dabates@apple.com>
     2
     3        check-style should not complain about code in icu directories
     4        https://bugs.webkit.org/show_bug.cgi?id=53929
     5
     6        Reviewed by Darin Adler.
     7
     8        Skip style checking of imported ICU headers to avoid a deluge of style issues
     9        as they do not conform to the WebKit Code Style guideline. We want to preserve
     10        the formatting of these headers so as to make it straightforward to merge
     11        changes to them, if necessary.
     12
     13        * Scripts/webkitpy/style/checker.py:
     14
    1152016-12-15  Alexey Proskuryakov  <ap@apple.com>
    216
  • trunk/Tools/Scripts/webkitpy/style/checker.py

    r206967 r209902  
    316316_SKIPPED_FILES_WITHOUT_WARNING = [
    317317    "LayoutTests" + os.path.sep,
     318
    318319    # Files generated by the bindings script should not be checked for style.
    319     os.path.join('Source', 'WebCore', 'bindings', 'scripts', 'test')]
     320    os.path.join('Source', 'WebCore', 'bindings', 'scripts', 'test'),
     321
     322    # ICU headers are imported.
     323    os.path.join('Source', 'JavaScriptCore', 'icu'),
     324    os.path.join('Source', 'WebCore', 'icu'),
     325    os.path.join('Source', 'WebKit', 'mac', 'icu'),
     326    os.path.join('Source', 'WTF', 'icu'),
     327    ]
    320328
    321329# Extensions of files which are allowed to contain carriage returns.
Note: See TracChangeset for help on using the changeset viewer.