aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-06-03 11:12:34 -0500
committerbors-servo <metajack+bors@gmail.com>2015-06-03 11:12:34 -0500
commit055182dae1d895ba2422e3da85c20a9a64beea71 (patch)
tree2032bc9097a0b85307af1548bd3bad9b9dbd3bc0
parent9aa1d932828d15f6590816c638af1e3f451130a4 (diff)
parent6c8c0394093354490cf4badb4993fd91b0001836 (diff)
downloadservo-055182dae1d895ba2422e3da85c20a9a64beea71.tar.gz
servo-055182dae1d895ba2422e3da85c20a9a64beea71.zip
Auto merge of #6274 - frewsxcv:tidy-all-the-things, r=metajack
After #6268 merged, I found out that everything in the tree currently passes the tidy checker. --------------- It is worth pointing out that I personally do not know if this is a feature wanted by others. Once I noticed everything was already tidy, I decided to open this PR to start the conversation (if any). I am not convinced this is really a Good Thing, so my feelings would not get hurt if this was closed immediately. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6274) <!-- Reviewable:end -->
-rw-r--r--python/tidy.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/python/tidy.py b/python/tidy.py
index bfad1b43ea3..2fe531da4b3 100644
--- a/python/tidy.py
+++ b/python/tidy.py
@@ -15,7 +15,6 @@ import itertools
import re
from licenseck import licenses
-directories_to_check = ["ports", "components", "tests", "python"]
filetypes_to_check = [".rs", ".rc", ".cpp", ".c", ".h", ".py"]
reftest_directories = ["tests/ref"]
reftest_filetype = ".list"
@@ -40,10 +39,15 @@ ignored_files = [
# MIT license
"components/util/deque/mod.rs",
+
+ # Hidden files/directories
+ ".*",
]
-def collect_file_names(top_directories):
+def collect_file_names(top_directories=None):
+ if top_directories is None:
+ top_directories = os.listdir(".")
for top_directory in top_directories:
for dirname, dirs, files in os.walk(top_directory):
for basename in files:
@@ -142,7 +146,7 @@ def get_reftest_names(line):
def scan():
- all_files = collect_file_names(directories_to_check)
+ all_files = collect_file_names()
files_to_check = filter(should_check, all_files)
checking_functions = [check_license, check_by_line]