diff options
Diffstat (limited to 'python/tidy')
-rw-r--r-- | python/tidy/servo_tidy/tidy.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/tidy/servo_tidy/tidy.py b/python/tidy/servo_tidy/tidy.py index 9a824fc1754..5b66d2911e4 100644 --- a/python/tidy/servo_tidy/tidy.py +++ b/python/tidy/servo_tidy/tidy.py @@ -34,7 +34,8 @@ file_patterns_to_ignore = [ ignored_files = [ # Generated and upstream code combined with our own. Could use cleanup os.path.join(".", "ports", "geckolib", "gecko_bindings", "bindings.rs"), - os.path.join(".", "ports", "geckolib", "gecko_bindings", "structs.rs"), + os.path.join(".", "ports", "geckolib", "gecko_bindings", "structs_debug.rs"), + os.path.join(".", "ports", "geckolib", "gecko_bindings", "structs_release.rs"), os.path.join(".", "ports", "geckolib", "string_cache", "atom_macro.rs"), os.path.join(".", "resources", "hsts_preload.json"), os.path.join(".", "tests", "wpt", "metadata", "MANIFEST.json"), |