chiark / gitweb /
lint: warn about /master/ usage
authorDaniel Martí <mvdan@mvdan.cc>
Mon, 24 Aug 2015 23:34:39 +0000 (16:34 -0700)
committerDaniel Martí <mvdan@mvdan.cc>
Mon, 24 Aug 2015 23:34:39 +0000 (16:34 -0700)
fdroidserver/lint.py

index 61b2b6392862c1d605112fccda51dac69127b144..d8d6a962586ecc45ef8c71037e295a9f63fe30c2 100644 (file)
@@ -58,6 +58,8 @@ http_url_shorteners = [
 http_warnings = https_enforcings + http_url_shorteners + [
     (re.compile(r'.*github\.com/[^/]+/[^/]+\.git'),
      "Appending .git is not necessary"),
+    (re.compile(r'(.*/blob/master/|.*raw\.github.com/[^/]*/[^/]*/master/)'),
+     "Use /HEAD/ instead of /master/ to point at a file in the default branch"),
     # TODO enable in August 2015, when Google Code goes read-only
     # (re.compile(r'.*://code\.google\.com/.*'),
     #  "code.google.com will be soon switching down, perhaps the project moved to github.com?"),