]> granicus.if.org Git - python/commitdiff
Disable the line length checker by default.
authorGeorg Brandl <georg@python.org>
Sat, 3 Jan 2009 21:11:58 +0000 (21:11 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 3 Jan 2009 21:11:58 +0000 (21:11 +0000)
Doc/Makefile
Doc/tools/rstlint.py

index 02d1acff0b0a829dcb6866cdcf78dff91e4feb58..b1b0e8512943740e5931de02ebcae26c11bc3a9d 100644 (file)
@@ -142,4 +142,4 @@ dist:
        cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2
 
 check:
-       $(PYTHON) tools/rstlint.py -i tools -s 2
+       $(PYTHON) tools/rstlint.py -i tools
index 7e739425e226a8fea49c6f16eb04274f2927e191..0846d2a8a348111a0a5b46a8eaaf0ca47ae46151 100755 (executable)
@@ -91,7 +91,6 @@ def check_suspicious_constructs(fn, lines):
 @checker('.py', '.rst')
 def check_whitespace(fn, lines):
     """Check for whitespace and line length issues."""
-    lasti = 0
     for lno, line in enumerate(lines):
         if '\r' in line:
             yield lno+1, '\\r in line'
@@ -99,7 +98,13 @@ def check_whitespace(fn, lines):
             yield lno+1, 'OMG TABS!!!1'
         if line[:-1].rstrip(' \t') != line[:-1]:
             yield lno+1, 'trailing whitespace'
-        if len(line) > 86:
+
+
+@checker('.rst', severity=0)
+def check_line_length(fn, lines):
+    """Check for line length; this checker is not run by default."""
+    for lno, line in enumerate(lines):
+        if len(line) > 81:
             # don't complain about tables, links and function signatures
             if line.lstrip()[0] not in '+|' and \
                'http://' not in line and \