chiark / gitweb /
lint: switch links to plain URLS rather than mediawiki syntax
[fdroidserver.git] / fdroidserver / lint.py
index 66b66245eb47a4fb539c9ef4fb0274e9164158e5..b53553593f3453124991e7f9a4f5132a33cdc589 100644 (file)
@@ -116,10 +116,6 @@ regex_checks = {
          _("Unnecessary leading space")),
         (re.compile(r'.*\s$'),
          _("Unnecessary trailing space")),
-        (re.compile(r'.*([^[]|^)\[[^:[\]]+( |\]|$)'),
-         _("Invalid link - use [http://foo.bar Link title] or [http://foo.bar]")),
-        (re.compile(r'(^|.* )https?://[^ ]+'),
-         _("Unlinkified link - use [http://foo.bar Link title] or [http://foo.bar]")),
     ],
 }