diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-03-31 12:42:56 -0600 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-03-31 12:42:56 -0600 |
commit | 9f3493b5bbfc6f0c40385fb41a32e006092e0f3a (patch) | |
tree | b7c7d3bcd952083ed1167748ed03beaa2708bd90 | |
parent | 225d7d2ece418d5ecefd7ce9047c4754ffb68c73 (diff) | |
parent | 2fdc1cbaa8285c29b75da1a08ece67099a7db848 (diff) | |
download | servo-9f3493b5bbfc6f0c40385fb41a32e006092e0f3a.tar.gz servo-9f3493b5bbfc6f0c40385fb41a32e006092e0f3a.zip |
auto merge of #5039 : psdh/servo/tidy, r=jdm
Fixes #5034
-rw-r--r-- | python/tidy.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/tidy.py b/python/tidy.py index c6bb4931e2d..cb20dff1646 100644 --- a/python/tidy.py +++ b/python/tidy.py @@ -14,7 +14,7 @@ import fnmatch import itertools from licenseck import licenses -directories_to_check = ["ports/gonk", "components"] +directories_to_check = ["ports", "components"] filetypes_to_check = [".rs", ".rc", ".cpp", ".c", ".h", ".py"] reftest_directories = ["tests/ref"] reftest_filetype = ".list" @@ -30,6 +30,7 @@ ignored_files = [ "components/servo/target/*", "ports/gonk/target/*", "ports/gonk/src/native_window_glue.cpp", + "ports/cef/*", # MIT license "components/util/deque/mod.rs", |