From 59d977c649b01ae1fd5e6224664bfe9240042894 Mon Sep 17 00:00:00 2001 From: Andy Boughton <abought@gmail.com> Date: Tue, 7 Apr 2015 10:22:51 -0400 Subject: [PATCH] Ignore conduct.md and contributing.md. Again. --- tools/check.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/check.py b/tools/check.py index 5384590..23df9ad 100755 --- a/tools/check.py +++ b/tools/check.py @@ -671,7 +671,8 @@ LESSON_TEMPLATES = {"index": (IndexPageValidator, "^index"), "discussion": (DiscussionPageValidator, "^discussion")} # List of files in the lesson directory that should not be validated at all -SKIP_FILES = ("DESIGN.md", "FAQ.md", "LAYOUT.md", "README.md") +SKIP_FILES = ("CONDUCT.md", "CONTRIBUTING.md", + "DESIGN.md", "FAQ.md", "LAYOUT.md", "README.md") def identify_template(filepath): -- GitLab