Title: [265094] trunk/Tools
Revision
265094
Author
bda...@apple.com
Date
2020-07-30 14:24:43 -0700 (Thu, 30 Jul 2020)

Log Message

Make report-non-inclusive-language ignore xcuserstate
https://bugs.webkit.org/show_bug.cgi?id=214985

Reviewed by Darin Adler.

Ignore xcuserstate since it introduces random noise.
* Scripts/report-non-inclusive-language:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (265093 => 265094)


--- trunk/Tools/ChangeLog	2020-07-30 21:21:54 UTC (rev 265093)
+++ trunk/Tools/ChangeLog	2020-07-30 21:24:43 UTC (rev 265094)
@@ -1,3 +1,13 @@
+2020-07-30  Beth Dakin  <bda...@apple.com>
+
+        Make report-non-inclusive-language ignore xcuserstate
+        https://bugs.webkit.org/show_bug.cgi?id=214985
+
+        Reviewed by Darin Adler.
+
+        Ignore xcuserstate since it introduces random noise.
+        * Scripts/report-non-inclusive-language:
+
 2020-07-30  Tim Horton  <timothy_hor...@apple.com>
 
         Web content gets stuck in an inactive state (no cursor updates or text insertion caret) when activating a tab with a thumbnail visible

Modified: trunk/Tools/Scripts/report-non-inclusive-language (265093 => 265094)


--- trunk/Tools/Scripts/report-non-inclusive-language	2020-07-30 21:21:54 UTC (rev 265093)
+++ trunk/Tools/Scripts/report-non-inclusive-language	2020-07-30 21:24:43 UTC (rev 265094)
@@ -33,7 +33,7 @@
 #   Clever default for use on WebKit source tree instead of current directory by default.
 #   Report third party sources separately from WebKit project files.
 #   Skip known examples on an exception list that we don't intend to fix.
-#   Replace special cases for ChangeLog and ".order" files with something smarter.
+#   Replace special cases for ChangeLog, ".order", and ".xcuserstate" files with something smarter.
 
 # Hard-coded for now, could read these out of a file instead.
 # Term, then the regular _expression_ for that term.
@@ -60,6 +60,8 @@
             continue
         if file.endswith(".order"):
             continue
+        if file.endswith(".xcuserstate"):
+            continue
         handle = open(os.path.join(subroot, file), "r")
         for line in handle.readlines():
             for term in nonInclusiveTerms:
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to