Title: [225957] trunk/Tools
- Revision
- 225957
- Author
- ddkil...@apple.com
- Date
- 2017-12-14 19:26:27 -0800 (Thu, 14 Dec 2017)
Log Message
check-webkit-style: Stop warning about underscores in webrtc source
<https://webkit.org/b/180848>
Reviewed by Joseph Pecoraro.
* Scripts/webkitpy/style/checker.py:
(_PATH_RULES_SPECIFIER): Suppress readability/naming/underscores
warnings under Source/ThirdParty/libwebrtc/Source/webrtc.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (225956 => 225957)
--- trunk/Tools/ChangeLog 2017-12-15 02:49:25 UTC (rev 225956)
+++ trunk/Tools/ChangeLog 2017-12-15 03:26:27 UTC (rev 225957)
@@ -1,3 +1,14 @@
+2017-12-14 David Kilzer <ddkil...@apple.com>
+
+ check-webkit-style: Stop warning about underscores in webrtc source
+ <https://webkit.org/b/180848>
+
+ Reviewed by Joseph Pecoraro.
+
+ * Scripts/webkitpy/style/checker.py:
+ (_PATH_RULES_SPECIFIER): Suppress readability/naming/underscores
+ warnings under Source/ThirdParty/libwebrtc/Source/webrtc.
+
2017-12-14 Jonathan Bedard <jbed...@apple.com>
webkitpy: Replace Version.contained_in with Version.__contains__
Modified: trunk/Tools/Scripts/webkitpy/style/checker.py (225956 => 225957)
--- trunk/Tools/Scripts/webkitpy/style/checker.py 2017-12-15 02:49:25 UTC (rev 225956)
+++ trunk/Tools/Scripts/webkitpy/style/checker.py 2017-12-15 03:26:27 UTC (rev 225957)
@@ -252,7 +252,8 @@
os.path.join('Source', 'WebCore', 'PAL', 'pal', 'spi', 'cocoa', 'PassKitSPI.h')],
["-build/include"]),
- ([ # Some SPI headers have identifier names with underscores.
+ ([ # libwebrtc source and some SPI headers have identifier names with underscores.
+ os.path.join('Source', 'ThirdParty', 'libwebrtc', 'Source', 'webrtc'),
os.path.join('Source', 'WebCore', 'PAL', 'pal', 'spi')],
["-readability/naming/underscores"]),
]
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes