-
Notifications
You must be signed in to change notification settings - Fork 21
/
.lint.py
executable file
·69 lines (54 loc) · 1.98 KB
/
.lint.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python3
import sys
import argparse
import re
parser = argparse.ArgumentParser(description="Lint markdown drafts.")
parser.add_argument("files", metavar="file", nargs="+", help="Files to lint")
parser.add_argument("-l", dest="maxLineLength", default=180)
parser.add_argument("-f", dest="maxFigureLineLength", default=66)
args = parser.parse_args()
foundError = False
for inputfile in args.files:
insideFigure = False
beforeAbstract = True
with open(inputfile, mode="rt", newline=None, encoding="utf-8") as draft:
linenumber = 0
lines = draft.readlines()
abstract = re.compile("^--- abstract")
table = re.compile("^\s*(?:\||{:)")
figure = re.compile("^[~`]{3,}")
for line in lines:
line = line.rstrip("\r\n")
linenumber += 1
def err(msg):
global foundError
foundError = True
sys.stderr.write("{0}:{1}: {2}\n".format(inputfile, linenumber, msg))
sys.stderr.write("{0}\n".format(line))
if line.find("\t") >= 0:
err("Line contains HTAB")
# Skip everything before abstract
if beforeAbstract:
matchObj = abstract.match(line)
if matchObj:
beforeAbstract = False
continue
# Skip tables
matchObj = table.match(line)
if matchObj:
continue
# Toggle figure state
matchObj = figure.match(line)
if matchObj:
insideFigure = not insideFigure
continue
# Check length
length = len(line)
limit = (
int(args.maxFigureLineLength)
if insideFigure
else int(args.maxLineLength)
)
if length > limit:
err("Line is {0} characters; limit is {1}".format(length, limit))
sys.exit(1 if foundError else 0)